/* Articolo Single Page - Dark Mode Inspired by Geopop Layout */

.articolo-single-page {
    background-color: #000;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 80px;
    font-family: 'Century Gothic', Arial, sans-serif;
}

.articolo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.articolo-topic {
    color: #b43d9e;
    /* Brand accent */
    font-weight: 700;
}

.articolo-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    /* Geopop uses specific sans-serif, we stick to site font or standard sans */
}

.articolo-intro {
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    color: #ddd;
    margin-bottom: 30px;
    border-left: 4px solid #b43d9e;
    padding-left: 20px;
}

.support-banner {
    background-color: #FFFF00;
    /* Yellow banner from reference */
    color: #000;
    padding: 10px 15px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.articolo-author {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 40px;
}

.author-name {
    color: #fff;
    font-weight: 700;
}

/* Visual Section */
.visual-section {
    margin-bottom: 50px;
    position: relative;
}

.share-button-container {
    text-align: right;
    margin-bottom: 10px;
}

.btn-share {
    background-color: #3b5998;
    /* Facebook/Social Blue variant */
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.main-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.articolo-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Body Content */
.articolo-body {
    font-family: 'Arial', sans-serif;
    /* High readability */
    font-size: 1.15rem;
    line-height: 1.8;
    color: #eee;
}

.text-content p {
    margin-bottom: 1.5em;
}

.text-content h2 {
    font-size: 2rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #fff;
}

.text-content strong {
    color: #fff;
}

/* Tags */
.articolo-tags {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

.tag-label {
    font-weight: 700;
    margin-right: 10px;
}

.tag-value {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .articolo-title {
        font-size: 2.2rem;
    }

    .articolo-intro {
        font-size: 1.1rem;
    }

    .articolo-body {
        font-size: 1.05rem;
    }
}