/* Reset Styles */
:root {

    /* Typography */
    --font-family: 'Avenir LT Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    --font-size-sm: 18px;
    --font-size-base: 18px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
    --font-size-3xl: 36px;
    --font-size-4xl: 120px;


    /* Transitions */
    --transition-default: 0.2s ease;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/Avenir LT Std 45 Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #131313;
    color: var(--color-white);
}

/* Hero Section */
.hero-section {
    width: 100%;
    padding-top: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section h1 {
    color: #FFFFFF;
    position: absolute;
    bottom: 100px;
    font-family: var(--font-family);
    font-size: 64px;
    font-weight: 500;
    padding-left: 70px;
    padding-right: 70px;
    z-index: 10;
}

.hero-section p {
    color: #FFFFFF;
    position: absolute;
    bottom: 95px;
    font-family: var(--font-family);
    font-size: var(--font-size-base);;
    font-weight: 500;
    padding-left: 70px;
    padding-right: 70px;
    z-index: 10;
}




/* Main Content Section */
.content-section {
    width: calc(100% - 80px);
    max-width: 1440px;
    margin: 100px auto 0;
    background: transparent;
}

.content-container {
    display: grid;
    grid-template-columns: 350px 1fr 200px;
    gap: 40px;
    background: transparent;
}

.article-subtitle {
    font-family: var(--font-family);
    color: #A1A1AA;
    font-size: 24px;
    line-height: 1.4;
}

.article-content-text {
    font-family: var(--font-family);
    color: #ffffff;

}

/* Left Sidebar */
.sidebar-left {
    margin-top: 50px;
    width: 100%;
    background: transparent;
}

/* Navigation Buttons */
.news-navigation {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: transparent;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
}

.article-meta h1 {
    font-family: var(--font-family);
    font-size: 34px;
    font-weight: 600;
    color: #EFA32F;
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
}

.article-date {
    font-family: var(--font-family);
    font-size: var(--font-size-base);;
    color: #ffffff;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.author-name {
    font-family: var(--font-family);
    font-size: var(--font-size-base);;
    color: #ffffff;
}

.author-role {
    font-family: var(--font-family);
    font-size: var(--font-size-base);;
    color: #A1A1AA;
}

.article-category {
    font-family: var(--font-family);
    font-size: var(--font-size-base);;
    font-weight: 500;
    color: #ffffff;
    padding: 12px 12px;
    border-radius: 18px;
    display: inline-block;
    width: fit-content;
    background: #27272A;
}

/* Navigation Buttons */
.nav-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: transparent;
    border: none;
    text-decoration: none !important;
    color: #ffffff;
}

.nav-button:hover,
.nav-button:focus,
.nav-button:active,
.nav-button:visited {
    text-decoration: none !important;
    color: #ffffff;
}

.nav-button span,
.nav-button .nav-text,
.nav-button .nav-label {
    text-decoration: none !important;
    color: #ffffff;
}

.nav-text span {
    text-decoration: none !important;
}

.nav-label {
    text-decoration: none !important;
    color: #ffffff;
}

.nav-button a{
    text-decoration: none;
}

.nav-button span {
    font-size: var(--font-size-base);;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-family);
    text-decoration: none;
}

.nav-button.prev-button span i {
    align-self: flex-start;
}

.nav-button span i {
    font-size: var(--font-size-base);;
    background: #27272A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-buttons-wrapper {
    display: flex;
    gap: 5px;
    width: 100%;
    background: transparent;
}

/* Main Content */
.article-content {
    font-size: var(--font-size-base);;
    line-height: 1.8;
    color: #333;
    background: transparent;
}

.article-content a {
    text-decoration: none;
    color: #EFA32F;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content blockquote {
    border-left: 4px solid #666;
    padding: 20px 0 20px 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    background: transparent;
}

.article-source {
    font-family: var(--font-family);
    margin-top: 20px;
    padding-top: 20px;
    font-size: var(--font-size-base);;
    color: #EFA32F;
    background: transparent;
}

.article-source a {
    color: #EFA32F;
    text-decoration: none;
}

.article-source a:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    font-family: var(--font-family);
    padding-top: 100px;
    padding-right: 20px;
    background: transparent;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.share-label {
    color: #ffffff !important;
    display: block;
    margin-bottom: 16px;
}

.share-section span {
    display: block;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.social-icon:hover img {
    opacity: 0.7;
}

/* Newsletter Section */
.newsletter-section {
    width: 100%;
    padding: 60px 20px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    background: transparent;
}

.center-image-newsletter {
    height: 58px;
    margin: 0 auto;
    display: block;
    background: transparent;
}



/* Guest Header Styles
   ========================================================================== */
.card-podcast {
    position: absolute;
    top: 180px;
    left: 50px;
    width: 400px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10;
    border-radius: 12px;
}

.card-wrapper-podcast {
    position: relative;
}

.guest-header {
    padding: 20px;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guest-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-details {
    color: #ffffff;
}

.guest-label {
    font-size: var(--font-size-base);;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--font-family);
}

.guest-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 2px;
    font-family: var(--font-family);
}

.guest-position {
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        padding-top: 100px;
        background: transparent;
    }

    .hero-section h1 {
        bottom: -75px;
        font-size: 28px;
        font-weight: 500;
        padding-left: 30px;
        z-index: 2;
    }

    .hero-section p {
        bottom: -90px;
        font-weight: 500;
        padding-left: 30px;
        z-index: 2;
    }

    .article-meta h1 {
        font-size: 28px;
    }

    .nav-content img {
        width: 70px;
        height: 52px;
    }

    .newsletter-title {
        font-size: 28px;
        background: transparent;
    }

    .content-container {
        grid-template-columns: 1fr;
    }

    .newsletter-section {
        width: 80%;
        padding: 60px 0;
        margin: 0 auto;
        text-align: center;
    }

    .card-podcast {
        position: absolute;
        top: 100px;
        left: 0px;
        border-radius: 0px;
    }
}
