#oxf .global-topbar {
    min-height: 74px;
    background: #1f2630;
    color: #fff;
    display: flex;
    align-items: center;
}

#oxf .global-topbar-inner {
    display: flex;
    align-items: center;
}

#oxf .global-topbar-title {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Typography Variables */
#oxf {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Mulish', sans-serif;
    --color-yellow: #e6b030;
    --color-green: #396428;
    --color-white: #ffffff;
    --color-dark: #333333;
    --color-text-gray: #666666;
}

/* Navbar Styles */
#oxf .navbar {
    background-color: var(--color-white);
    padding: 27px 0;
    font-family: var(--font-secondary);
    position: relative;
    width: 100%;
    z-index: 1000;
}

#oxf .navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.navbar-is-sticky #oxf {
    padding-top: 0;
}

#oxf .navbar-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0
}

#oxf .nav-menu {
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

#oxf .nav-link {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

#oxf .nav-link:hover {
    color: var(--color-green);
}

#oxf .nav-link.active {
    color: var(--color-green);
}

#oxf .mobile-nav-toggle {
    display: none;
    border: none;
    background: var(--color-green);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0 12px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

#oxf .mobile-nav-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section Styles */
#oxf .hero {
    background-color: #2c2c2c;
    background-image: url('Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Overlay */
#oxf .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#oxf .hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0
}

#oxf .hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
}

#oxf .hero-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 25px;
}

#oxf .hero-subtitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 35px;
}

#oxf .hero-description {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 45px;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

#oxf .btn {
    display: inline-block;
    padding: 15px 26px;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#oxf .btn-primary {
    background-color: var(--color-yellow);
    color: #333;
}

#oxf .btn-primary:hover {
    background-color: #d4a025;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

#oxf .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

#oxf .hero-image img {
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    max-height: 600px;
}

#oxf .section-description {
    padding: 80px 0;
}

#oxf .section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

#oxf .title-underline {
    width: 80px;
    height: 10px;
    background-color: var(--color-green);
    margin-bottom: 30px;
}

#oxf .section-text {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Hidden by default, expands with JS */
#oxf .more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease-out, opacity 0.5s ease-out;
}

#oxf .more-content.expanded {
    max-height: 1000px;
    opacity: 1;
}

#oxf .show-more-btn {
    margin-top: 10px;
    margin-bottom: 60px;
}

/* Stats Cards Styles */
#oxf .stats-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

#oxf .stat-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    background-color: #e9ecef;
}

#oxf .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

#oxf .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#oxf .stat-icon {
    width: 20px;
    height: auto;
}

#oxf .stat-icon-large {
    width: 30px;
}

#oxf .stat-divider {
    width: 40px;
    height: 4px;
    background-color: var(--color-green);
    margin: 15px 0;
    transition: background-color 0.3s ease;
}

#oxf .stat-card:hover .stat-divider {
    background-color: #fff;
}

#oxf .stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-green);
    transition: color 0.3s ease;
}

#oxf .stat-card:hover .stat-number {
    color: #fff;
}

#oxf .stat-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

#oxf .stat-card:hover .stat-label {
    color: #fff;
}

/* Table of Contents Section */
#oxf .section-toc {
    padding: 80px 0;
    position: relative;
}

#oxf .toc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

#oxf .toc-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Styling */
#oxf .toc-card {
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#oxf .toc-card:hover {
    background-color: #dcdcdc;
}

/* Header (Visible always) */
#oxf .toc-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

#oxf .toc-card-active .toc-header {
    background-color: var(--color-yellow);
}

#oxf .toc-card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: #333;
    flex: 1;
    margin-right: 15px;
}

#oxf .toc-card-arrow {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Content List (Accordion Body) */
#oxf .toc-content-list {
    max-height: 0;
    overflow: hidden;
    background-color: #e9ecef;
    transition: max-height 0.5s ease-out;
    padding: 0 25px;
    overflow-y: hidden;
    direction: rtl;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: #e6b030 transparent;
}

#oxf .toc-content-list.expanded {
    padding: 25px;
    padding-left: 40px;
    padding-right: 40px;
    max-height: 176px;
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

/* Inner content wrapper to reset direction */
#oxf .toc-content-inner {
    direction: ltr;
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

/* Custom Scrollbar */
#oxf .toc-content-list::-webkit-scrollbar {
    width: 10px;
}

#oxf .toc-content-list::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

#oxf .toc-content-list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

#oxf .toc-content-list::-webkit-scrollbar-corner {
    background: transparent;
}

#oxf .toc-content-list::-webkit-scrollbar-thumb {
    background-color: var(--color-yellow);
    border-radius: 0;
}

#oxf .toc-item {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px 6px;
    border-radius: 4px;
}

#oxf .toc-item:hover {
    background-color: rgba(0,0,0,0.05);
    color: #000;
}

#oxf .toc-item:last-child {
    margin-bottom: 0;
}

#oxf .toc-item strong {
    color: #333;
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    font-family: var(--font-primary);
}

/* Modal / Detailed View */
#oxf .toc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#oxf .toc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

#oxf .toc-modal-content {
    background-color: #e9ecef;
    width: 90%;
    max-width: 800px;
    border-radius: 4px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow: hidden;
}

#oxf .toc-modal-overlay.active .toc-modal-content {
    transform: scale(1);
}

#oxf .toc-modal-header {
    background-color: var(--color-yellow);
    padding: 30px;
    direction: ltr;
}

#oxf .toc-modal-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

#oxf .toc-modal-body {
    padding: 32px 40px 54px 40px;
    font-family: var(--font-primary);
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    max-height: calc(90vh - 140px);
    overflow-y: scroll;
    direction: rtl;
    scrollbar-width: thin;
    scrollbar-color: #396428 transparent;
}

#oxf .toc-modal-body > * {
    direction: ltr;
}

#oxf .toc-modal-body::-webkit-scrollbar {
    width: 12px;
}

#oxf .toc-modal-body::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

#oxf .toc-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#oxf .toc-modal-body::-webkit-scrollbar-corner {
    background: transparent;
}

#oxf .toc-modal-body::-webkit-scrollbar-thumb {
    background-color: #396428;
    border-radius: 0;
}

#oxf .toc-modal-close {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-green);
    color: #fff;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    direction: ltr;
}

#oxf .toc-modal-close:hover {
    background-color: #2a4b1e;
}

/* Contributors Section */
#oxf .section-contributors {
    padding: 80px 0;
}

#oxf .contributors-panel {
    background-color: #e9ecef;
    padding: 40px 0;
    border-radius: 2px;
}

#oxf .contributors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

#oxf .contributor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#oxf .contributor-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--color-yellow);
}

#oxf .contributor-placeholder-img {
    width: 100%;
    height: 100%;
    background-color: var(--color-yellow);
    background-image: url('contact.png');
    background-size: 42%;
    background-repeat: no-repeat;
    background-position: center;
}

#oxf .contributor-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

#oxf .contributor-role {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px;
    line-height: 1.4;
    max-width: 200px;
}

#oxf .btn-white {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    font-size: 12px;
    padding: 10px 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#oxf .btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

#oxf .load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#oxf .load-more-btn {
    background-color: var(--color-yellow);
    color: #333;
    padding: 15px 50px;
    font-size: 14px;
}

/* Interview Series Section */
#oxf .section-interview {
    padding: 80px 20px;
}

#oxf .interview-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

#oxf .interview-playlist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 412px;
    overflow-y: scroll;
    padding-left: 12px;
    padding-right: 0;
    direction: rtl;
    scrollbar-width: thin;
    scrollbar-color: #e6b030 transparent;
    scrollbar-gutter: stable;
}

#oxf .interview-playlist::-webkit-scrollbar {
    width: 10px;
}

#oxf .interview-playlist::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

#oxf .interview-playlist::-webkit-scrollbar-track {
    background: transparent;
}

#oxf .interview-playlist::-webkit-scrollbar-corner {
    background: transparent;
}

#oxf .interview-playlist::-webkit-scrollbar-thumb {
    background-color: var(--color-yellow);
    border-radius: 0;
}

#oxf .playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: ltr;
}

#oxf .playlist-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#oxf .playlist-item.active {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#oxf .playlist-info h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

#oxf .playlist-desc {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

#oxf .playlist-date-badge {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 6px 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-width: 114px;
    justify-content: center;
}

#oxf .date-day {
    font-size: 34px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

#oxf .date-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

#oxf .date-month {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

#oxf .date-year {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-top: 2px;
}

/* Specific styling for active item badge if needed */
#oxf .playlist-item.active .playlist-date-badge {
    background-color: var(--color-green);
    border-color: var(--color-green);
}

#oxf .playlist-item.active .date-day,
#oxf .playlist-item.active .date-month,
#oxf .playlist-item.active .date-year {
    color: #fff;
}

/* Video Player */
#oxf .interview-player {
    flex: 1.5;
    height: 412px;
}

#oxf .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
    border-radius: 4px;
}

#oxf .interview-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#oxf .video-thumbnail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

#oxf .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
}

#oxf .play-button {
    width: 80px;
    height: 55px;
    background-color: red;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#oxf .play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
}

#oxf .play-button:hover {
    transform: scale(1.1);
}

#oxf .video-text {
    text-align: center;
}

#oxf .video-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Event Section */
#oxf .section-event {
    padding: 80px 20px;
    padding-bottom: 120px;
}

#oxf .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    margin-top: -20px;
}

#oxf .event-banner {
    position: relative;
    width: 100%;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
}

#oxf .event-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    #oxf .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #oxf .interview-container {
        flex-direction: column-reverse;
        flex-direction: column;
    }

    #oxf .interview-player,
    #oxf .interview-playlist {
        width: 100%;
    }

    #oxf .interview-playlist,
    #oxf .interview-player {
        height: auto;
    }
}

@media (max-width: 576px) {
    #oxf .contributors-grid {
        grid-template-columns: 1fr;
    }
}

/* Editors Section */
#oxf .section-editors {
    padding: 80px 0;
}

#oxf .editors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

#oxf .editor-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    padding: 40px;
    background-color: #fff;
}

#oxf .editor-info {
    flex: 1;
    padding-right: 40px;
}

#oxf .editor-name {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Green underline for names */
#oxf .editor-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 10px;
}

#oxf .editor-title {
    font-size: 14px;
    font-family: var(--font-primary);
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

#oxf .editor-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--color-yellow);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-left: auto;
}

#oxf .editor-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center top;
}

#oxf #editors .editor-image{
    height: 200px;
    
}

/* Responsive for new sections */
@media (max-width: 992px) {
    #oxf .toc-container {
        grid-template-columns: 1fr;
    }

    #oxf .editor-card {
        flex-direction: column-reverse;
        flex-direction: column;
        text-align: center;
    }

    #oxf .editor-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    #oxf .editor-name::after {
        margin: 10px auto 0;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #oxf .hero-container {
        flex-direction: column;
        text-align: center;
    }

    #oxf .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #oxf .hero-image {
        justify-content: center;
    }

    #oxf .hero-image img {
        transform: none;
        max-height: 400px;
    }

    #oxf .nav-menu {
        gap: 25px;
    }

    #oxf .stats-container {
        flex-direction: column;
        align-items: center;
    }

    #oxf .stat-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #oxf .global-topbar {
        display: none;
    }

    #oxf .container {
        padding: 0 16px;
    }

    #oxf .navbar {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    #oxf .nav-menu {
        position: fixed;
        left: 14px;
        top: 50%;
        transform: translate(-120%, -50%);
        transition: transform 0.35s ease;
        background: #fff;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        border-radius: 14px;
        padding: 16px 14px;
        z-index: 1200;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        min-width: 218px;
    }

    #oxf .navbar.mobile-open .nav-menu {
        transform: translate(0, -50%);
    }

    #oxf .mobile-nav-toggle {
        display: flex;
        position: fixed;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1201;
        transition: left 0.35s ease, transform 0.35s ease;
    }

    #oxf .navbar.mobile-open .mobile-nav-toggle {
        left: 244px;
    }

    #oxf .navbar.mobile-open .mobile-nav-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #oxf .navbar.mobile-open .mobile-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    #oxf .navbar.mobile-open .mobile-nav-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    #oxf .nav-link {
        font-size: 14px;
        white-space: nowrap;
    }

    #oxf .section-description,
    #oxf .section-toc,
    #oxf .section-editors,
    #oxf .section-interview,
    #oxf .section-event {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    #oxf .section-contributors {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    #oxf .contributors-panel {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    #oxf .section-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    #oxf .title-underline {
        margin-bottom: 22px;
    }

    #oxf .hero-title {
        font-size: 36px;
    }

    #oxf .hero-subtitle {
        font-size: 18px;
    }

    #oxf .hero {
        padding: 100px 0 60px;
    }

    #oxf .editor-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    #oxf .editor-image-wrapper {
        order: 1;
        margin: 0 auto 20px;
    }

    #oxf .editor-info {
        order: 2;
        margin-bottom: 0;
        padding-right: 0;
    }

    #oxf .editor-name::after {
        margin: 10px auto 0;
    }

    #oxf .editor-image {
        transform: scale(1.04) translateY(10px);
    }
    .decline-page .main-page .col-12 {
        padding: 0px !important;
    }
}

#modalAut{
    padding: 30px 40px 0
}


.path-oxford-handbook-economy-morocco .layout-content>.container{
    max-width: 100% !important;
}

#oxf .more-content.expanded {
  display: block !important;
}


.path-oxford-handbook-economy-morocco  .main-page{
    padding-top: 0 !important;
}

#moreContent{ display: none; }

/* Press Section */
.oxf-section-press {
    padding: 80px 20px;
    background-color: #fff;
}

.oxf-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.oxf-press-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.oxf-press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--color-green);
}

.oxf-press-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.oxf-press-icon {
    width: 40px;
    height: auto;
}

.oxf-press-card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.oxf-press-card-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-gray);
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

.oxf-press-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.oxf-btn-green {
    background-color: var(--color-green);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

.oxf-btn-green:hover {
    background-color: #2a4b1e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.oxf-btn-yellow {
    background-color: var(--color-yellow);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

.oxf-btn-yellow:hover {
    background-color: var(--color-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 10px 15px;
    font-size: 14px;
    min-width: 45px;
    text-align: center;
}

.oxf-contact-card {
    background-color: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
    padding: 30px;
}

.oxf-contact-card .oxf-press-icon-wrapper {
    background-color: var(--color-yellow);
}

.oxf-contact-card .oxf-press-card-title,
.oxf-contact-card .oxf-press-card-desc {
    color: #fff;
}

.oxf-contact-person {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 25%;
}

.oxf-contacts-info-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 50px 0;
    text-align: left;
}

.oxf-contacts-info-card:hover {
    border-color: #e0e0e0;
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.oxf-person-name {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.oxf-person-underline {
    width: 30px;
    height: 3px;
    background-color: var(--color-green);
    margin-bottom: 15px;
}

.oxf-person-role {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 10px;
}

.oxf-person-email {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-gray);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.oxf-person-phone {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-green);
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.oxf-person-email:hover {
    color: var(--color-green);
}

/* Responsive adjustments for Press section */
@media (max-width: 992px) {
    .oxf-press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .oxf-contacts-info-card {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 50px 0;
    }

    .oxf-contact-person {
        padding-left: 20%;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .oxf-press-grid {
        grid-template-columns: 1fr;
    }

    .oxf-contacts-info-card {
        grid-column: span 1;
        padding: 40px 0;
    }
    
    .oxf-contact-person {
        padding-left: 10%;
        align-items: flex-start;
        text-align: left;
    }
    
    .oxf-press-card {
        padding: 40px 15px; 
    }
}