/**
 * Editorial Header Styling
 * Modern, Minimal, Editorial, and Elegant Design
 * Premium Landing Page Style for OJS
 */

/* Import Google Fonts for Editorial Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ========================================
   BOOTSTRAP COLUMN PADDING OVERRIDE FOR INDEX SITE
   ======================================== */

/* Remove Bootstrap column padding on index site pages to align with editorial containers */
.header_indexSite .pkp_structure_main,
.header_indexSite .pkp_structure_main[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ========================================
   MAIN HEADER CONTAINER
   ======================================== */

.editorial-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.editorial-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.editorial-header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    min-height: 80px;
}

/* ========================================
   LEFT COLUMN - SITE NAME
   ======================================== */

.editorial-header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.editorial-site-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    line-height: 1.3;
}

.editorial-site-name:hover {
    color: #333333;
    text-decoration: none;
}

/* ========================================
   CENTER COLUMN - JOURNAL LOGO
   ======================================== */

.editorial-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-logo-wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.editorial-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
    text-decoration: none;
}

.editorial-logo-image {
    max-height: 70px;
    width: auto;
    display: block;
    transition: all 0.25s ease;
}

.editorial-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ========================================
   RIGHT COLUMN - CTA BUTTON
   ======================================== */

.editorial-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.editorial-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.editorial-cta-button svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.editorial-cta-button:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #ffffff;
}

.editorial-cta-button:active {
    transform: translateY(0);
}

/* Mobile Toggle Button */
.editorial-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.editorial-mobile-toggle .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.editorial-mobile-toggle:hover .icon-bar {
    background-color: #333333;
}

/* ========================================
   NAVIGATION MENU
   ======================================== */

.editorial-nav-container {
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.editorial-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.editorial-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-nav-menu li {
    list-style: none;
}

.editorial-nav-menu a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.25s ease;
    position: relative;
}

.editorial-nav-menu a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.editorial-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.25s ease;
}

.editorial-nav-menu a:hover::after {
    width: 100%;
}

.editorial-search {
    display: flex;
    align-items: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .editorial-header-container {
        padding: 0 24px;
    }

    .editorial-header-wrapper {
        gap: 20px;
        padding: 20px 0;
    }

    .editorial-site-name {
        font-size: 16px;
    }

    .editorial-logo-text {
        font-size: 18px;
    }

    .editorial-logo-image {
        max-height: 50px;
    }

    .editorial-cta-button {
        padding: 10px 24px;
        font-size: 13px;
    }

    .editorial-nav-menu {
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .editorial-header-container {
        padding: 0 16px;
    }

    .editorial-header-wrapper {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 16px 0;
        min-height: 64px;
    }

    /* Move logo to left on mobile */
    .editorial-header-left {
        order: 2;
        flex: 1;
        display: none;
    }

    .editorial-header-center {
        order: 1;
        justify-content: flex-start;
    }

    .editorial-header-right {
        order: 3;
        justify-content: flex-end;
    }

    /* Hide site name text on mobile */
    .editorial-site-name {
        display: none;
    }

    /* Show mobile toggle button */
    .editorial-mobile-toggle {
        display: flex;
    }

    /* Adjust logo for mobile */
    .editorial-logo-link {
        flex-direction: row;
        gap: 8px;
    }

    .editorial-logo-image {
        max-height: 60px;
    }

    .editorial-logo-text {
        font-size: 16px;
    }

    .editorial-cta-button {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Mobile Navigation */
    .editorial-nav-container {
        display: none;
    }

    .editorial-nav-container.in {
        display: block;
    }

    .editorial-nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .editorial-nav-menu {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .editorial-nav-menu a {
        font-size: 15px;
        padding: 8px 0;
        display: block;
    }

    .editorial-search {
        width: 100%;
        margin-top: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .editorial-header-wrapper {
        gap: 8px;
    }

    .editorial-logo-text {
        font-size: 14px;
    }

    .editorial-logo-image {
        max-height: 50px;
    }

    .editorial-cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.editorial-header *:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

.editorial-header .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   SMOOTH ANIMATIONS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .editorial-header *,
    .editorial-header *::before,
    .editorial-header *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.editorial-hero-section {
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.editorial-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.editorial-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Text Content */
.editorial-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 30px;
}

.editorial-hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: 2px;
    margin: 0;
}

.editorial-hero-subheadline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
}

.editorial-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    width: fit-content;
}

.editorial-hero-cta:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #ffffff;
}

.editorial-hero-cta:active {
    transform: translateY(0);
}

/* Right Column - Visual Content */
.editorial-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    min-height: 380px;
}

.editorial-hero-image {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Default placeholder styling if no image */
.editorial-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.editorial-hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4d4d4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.editorial-hero-placeholder-icon {
    font-size: 120px;
    color: #bbb;
    opacity: 0.5;
}

/* ========================================
   HERO SECTION - RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .editorial-hero-section {
        min-height: 65vh;
        padding: 60px 0;
    }

    .editorial-hero-container {
        padding: 0 24px;
    }

    .editorial-hero-grid {
        gap: 60px;
    }

    .editorial-hero-content {
        padding-right: 0;
        gap: 24px;
    }

    .editorial-hero-headline {
        font-size: 44px;
    }

    .editorial-hero-subheadline {
        font-size: 16px;
    }

    .editorial-hero-cta {
        padding: 14px 32px;
        font-size: 15px;
    }

    .editorial-hero-visual {
        min-height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .editorial-hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .editorial-hero-container {
        padding: 0 16px;
    }

    .editorial-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-hero-content {
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .editorial-hero-headline {
        font-size: 36px;
    }

    .editorial-hero-subheadline {
        font-size: 15px;
        max-width: 100%;
    }

    .editorial-hero-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .editorial-hero-visual {
        min-height: 300px;
        order: -1; /* Move image above text on mobile */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .editorial-hero-section {
        padding: 32px 0;
    }

    .editorial-hero-headline {
        font-size: 28px;
    }

    .editorial-hero-subheadline {
        font-size: 14px;
    }

    .editorial-hero-cta {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .editorial-hero-visual {
        min-height: 250px;
    }
}

/* ========================================
   ABOUT SECTION
   Modern Editorial Style with 2-Column Layout
   ======================================== */

.editorial-about-section {
    background-color: #fdfbf7;
    padding: 20px 0;
    position: relative;
    clear: both;
    display: block;
    width: 100%;
}

.editorial-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.editorial-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ========================================
   LEFT COLUMN - IMAGE
   ======================================== */

.editorial-about-image-wrapper {
    position: relative;
    width: 100%;
}

.editorial-about-image {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.editorial-about-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RIGHT COLUMN - TEXT CONTENT
   ======================================== */

.editorial-about-content {
    padding: 20px 0;
}

.editorial-about-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 32px 0;
    letter-spacing: -0.5px;
}

.editorial-about-description {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 400;
    max-width: 640px;
}

.editorial-about-description p {
    margin-bottom: 20px;
}

.editorial-about-description p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ABOUT SECTION - RESPONSIVE
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .editorial-about-section {
        padding: 80px 0;
    }

    .editorial-about-container {
        padding: 0 32px;
    }

    .editorial-about-grid {
        gap: 60px;
    }

    .editorial-about-title {
        font-size: 40px;
    }

    .editorial-about-description {
        font-size: 16px;
    }
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
    .editorial-about-section {
        padding: 60px 0;
    }

    .editorial-about-container {
        padding: 0 24px;
    }

    .editorial-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-about-image-wrapper {
        order: -1; /* Image on top */
        text-align: center;
    }

    .editorial-about-title {
        font-size: 36px;
        margin-bottom: 24px;
        text-align: center;
    }

    .editorial-about-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .editorial-about-content {
        padding: 0;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .editorial-about-section {
        padding: 48px 0;
    }

    .editorial-about-container {
        padding: 0 20px;
    }

    .editorial-about-grid {
        gap: 32px;
    }

    .editorial-about-title {
        font-size: 32px;
    }

    .editorial-about-description {
        font-size: 15px;
    }

    .editorial-about-image {
        border-radius: 6px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .editorial-header {
        border-bottom: 1px solid #000;
        box-shadow: none;
    }

    .editorial-cta-button,
    .editorial-mobile-toggle,
    .editorial-nav-container {
        display: none;
    }

    .editorial-header-wrapper {
        padding: 16px 0;
    }

    .editorial-hero-section {
        min-height: auto;
        padding: 20px 0;
        page-break-inside: avoid;
    }

    .editorial-hero-cta {
        display: none;
    }
}
/* ========================================
   JOURNALS SECTION STYLING
   ======================================== */

.editorial-journals-section {
    background-color: #fafafa;
    padding: 80px 0;
    width: 100%;
    clear: both;
    display: block;
}

.editorial-journals-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

.editorial-journals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.editorial-journal-card {
    background-color: #ffffff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 280px;
}

.editorial-journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editorial-journal-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.editorial-journal-card:hover .editorial-journal-name {
    color: #1a1a1a;
}

.editorial-journal-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-journal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.editorial-journal-card:hover .editorial-journal-image {
    transform: scale(1.05);
}

.editorial-journal-name {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   MODAL STYLING
   ======================================== */

.editorial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.editorial-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    backdrop-filter: blur(4px);
}

.editorial-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.editorial-modal-header {
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.editorial-modal-journal-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding-right: 40px;
    line-height: 1.4;
}

.editorial-modal-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: #666666;
}

.editorial-modal-close:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.editorial-modal-body {
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
}

.editorial-modal-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-modal-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    padding: 32px;
}

.editorial-modal-footer {
    padding: 24px 32px 32px 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Secondary button style for modal */
.editorial-cta-button-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.editorial-cta-button-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .editorial-journals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .editorial-journals-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .editorial-journals-section {
        padding: 60px 0;
    }
    
    .editorial-journals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .editorial-journals-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .editorial-journal-card {
        min-height: 260px;
    }
    
    .editorial-journal-image-wrapper {
        height: 160px;
    }
    
    .editorial-journal-name {
        font-size: 16px;
        padding: 20px 16px;
    }
    
    .editorial-modal-content {
        max-width: 100%;
        margin: 20px;
        border-radius: 8px;
    }
    
    .editorial-modal-header {
        padding: 24px 24px 20px 24px;
    }
    
    .editorial-modal-journal-name {
        font-size: 24px;
        padding-right: 36px;
    }
    
    .editorial-modal-close {
        top: 24px;
        right: 24px;
    }
    
    .editorial-modal-body {
        max-height: 350px;
    }
    
    .editorial-modal-image-wrapper {
        height: 200px;
    }
    
    .editorial-modal-description {
        font-size: 15px;
        line-height: 1.7;
        padding: 24px;
    }
    
    .editorial-modal-footer {
        padding: 20px 24px 24px 24px;
        flex-direction: column;
    }
    
    .editorial-modal-footer .editorial-cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .editorial-journals-title {
        font-size: 28px;
    }
    
    .editorial-journal-card {
        min-height: 240px;
    }
    
    .editorial-journal-image-wrapper {
        height: 140px;
    }
    
    .editorial-journal-name {
        font-size: 15px;
        padding: 18px 14px;
    }
}