/* Custom stylesheet for International Journal of Nursing Research and Clinical Practice (IJNRCP) */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

/* ==========================================================================
   Header & Navigation Customization
   ========================================================================== */
.pkp_structure_head {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pkp_site_name a {
    color: #0f766e !important; /* Medical Deep Teal */
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.pkp_navigation_primary_wrapper ul.pkp_navigation_primary > li > a {
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    padding: 1.25rem 1rem !important;
    transition: color 0.2s ease;
}

.pkp_navigation_primary_wrapper ul.pkp_navigation_primary > li > a:hover {
    color: #0f766e !important;
}

/* User Account Links */
.pkp_navigation_user_wrapper ul.pkp_navigation_user > li > a {
    color: #64748b !important;
    font-weight: 500;
}

.pkp_navigation_user_wrapper ul.pkp_navigation_user > li > a:hover {
    color: #0f766e !important;
}

/* ==========================================================================
   Home Page & Current Issue Container
   ========================================================================== */
.page_index_journal {
    padding-top: 2rem;
}

/* Page Title & Section Header */
.current_issue h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    border-left: 5px solid #0f766e;
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
}

.current_issue_title {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* TOC Heading Card */
.obj_issue_toc .heading {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #14b8a6; /* Mint Green */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.obj_issue_toc .heading .description {
    font-size: 1.05rem;
    color: #475569;
    font-style: italic;
}

/* ==========================================================================
   Articles Grid / Card Design
   ========================================================================== */
/* Section Title ("Articles") */
.obj_issue_toc .sections h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

/* Convert default list to responsive grid cards */
.obj_issue_toc .sections ul.articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    margin: 0 0 3rem 0;
}

.obj_issue_toc .sections ul.articles li {
    margin: 0;
    padding: 0;
    display: flex;
}

.obj_article_summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle accent overlay on hover */
.obj_article_summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0f766e;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.obj_article_summary:hover::before {
    transform: scaleX(1);
}

.obj_article_summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgba(15, 118, 110, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Article Title */
.obj_article_summary h4.title {
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
}

.obj_article_summary h4.title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.obj_article_summary h4.title a:hover {
    color: #0f766e;
}

/* Article Meta (Authors) */
.obj_article_summary .meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.obj_article_summary .meta .authors {
    font-size: 0.875rem;
    color: #0f766e;
    font-weight: 600;
}

/* Read More Button Link style for Articles */
.obj_article_summary .galleys_links {
    margin-top: 0.75rem;
    padding: 0;
    list-style: none;
}

/* Make Submission Widget Panel */
.pkp_structure_sidebar .block_make_submission a {
    display: block;
    background: #0f766e !important;
    color: #ffffff !important;
    font-weight: 700;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.2);
    transition: background 0.2s ease, transform 0.1s ease;
}

.pkp_structure_sidebar .block_make_submission a:hover {
    background: #0d5e57 !important;
    transform: translateY(-1px);
}

/* Archive Link Button */
.current_issue a.read_more {
    display: inline-block;
    color: #0f766e;
    font-weight: 600;
    border: 2px solid #0f766e;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.current_issue a.read_more:hover {
    background: #0f766e;
    color: #ffffff;
}

/* ==========================================================================
   Custom Footer Styling
   ========================================================================== */
.site-custom-footer {
    background-color: #082444; /* Dark Navy Blue */
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 3.5rem;
    border-top: 4px solid #0f766e;
}

.site-custom-footer a {
    transition: color 0.2s ease;
}

.custom-footer-top {
    padding-bottom: 2.5rem;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links li a {
    color: #93c5fd; /* Soft Blue/Sky Blue */
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
}

.footer-links li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Column 3: Logo & Text styling */
.footer-custom-logo {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.25rem;
}

.footer-journal-name {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 260px;
}

/* Bottom Copyright Bar */
.custom-footer-bottom {
    background-color: #4a607a; /* Slate Blue-Grey */
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ==========================================================================
   Login Page Customization (body.pkp_page_login)
   ========================================================================== */
body.pkp_page_login {
    background: radial-gradient(circle at 10% 20%, rgba(15, 118, 110, 0.15) 0.1%, rgba(20, 184, 166, 0.08) 90.1%),
                linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.pkp_page_login .pkp_structure_page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

body.pkp_page_login .pkp_structure_content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

body.pkp_page_login .pkp_structure_main {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

/* Hide breadcrumbs and sidebars on login page */
body.pkp_page_login .cmp_breadcrumbs,
body.pkp_page_login .pkp_structure_sidebar {
    display: none !important;
}

/* Login Page Container */
body.pkp_page_login .page_login {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.pkp_page_login .page_login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(15, 118, 110, 0.12), 
                0 2px 5px rgba(0, 0, 0, 0.03);
}

/* Title & Description */
body.pkp_page_login .page_login h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    text-align: center;
    letter-spacing: -0.025em;
}

body.pkp_page_login .page_login p {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Styles */
body.pkp_page_login form.login fieldset.fields {
    border: none;
    padding: 0;
    margin: 0;
}

body.pkp_page_login form.login .username,
body.pkp_page_login form.login .password {
    margin-bottom: 1.5rem;
}

body.pkp_page_login form.login label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

body.pkp_page_login form.login .label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.pkp_page_login form.login input[type="text"],
body.pkp_page_login form.login input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

body.pkp_page_login form.login input[type="text"]:focus,
body.pkp_page_login form.login input[type="password"]:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
    background: #ffffff;
}

/* Forgot Password Link */
body.pkp_page_login form.login .password label {
    position: relative;
}

body.pkp_page_login form.login .password a {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f766e;
    text-decoration: none;
    transition: color 0.2s;
}

body.pkp_page_login form.login .password a:hover {
    color: #0d5e57;
    text-decoration: underline;
}

/* Remember Checkbox */
body.pkp_page_login form.login .remember {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

body.pkp_page_login form.login .remember label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

body.pkp_page_login form.login .remember input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #0f766e;
    cursor: pointer;
}

/* Buttons and Links */
body.pkp_page_login form.login .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

body.pkp_page_login form.login button.submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #0f766e;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

body.pkp_page_login form.login button.submit:hover {
    background: #0d5e57;
}

body.pkp_page_login form.login button.submit:active {
    transform: scale(0.98);
}

body.pkp_page_login form.login a.register {
    display: block;
    text-align: center;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.05);
    border: 1px dashed rgba(15, 118, 110, 0.4);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

body.pkp_page_login form.login a.register:hover {
    background: rgba(15, 118, 110, 0.1);
    color: #0d5e57;
    border-color: #0d5e57;
}

/* ==========================================================================
   Custom Homepage Sidebar Styling
   ========================================================================== */
.custom-homepage-sidebar .sidebar-card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    background-color: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.08);
    overflow: hidden;
    transition: all 0.25s ease;
}

.custom-homepage-sidebar .sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.06);
}

.custom-homepage-sidebar .card-header {
    background-color: #ffffff;
    border-bottom: none !important;
}

.custom-homepage-sidebar .card-title {
    color: #0f766e !important; /* Medical Teal Title */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f1f5f9;
}

/* Submission Card Gradient Accent */
.sidebar-submit-card {
    background: linear-gradient(135deg, #0f766e 0%, #0d5e57 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
    transition: all 0.25s ease;
}

.sidebar-submit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15, 118, 110, 0.22);
}

.custom-sidebar-btn {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #0f766e !important;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.custom-sidebar-btn:hover {
    background-color: #f8fafc !important;
    border-color: #f8fafc !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-list {
    margin-bottom: 0;
}

.sidebar-list li a {
    color: #475569 !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.sidebar-list li a:hover {
    color: #0f766e !important;
    transform: translateX(4px);
}

/* Custom Tag Badges */
.badge-tag {
    background-color: #f1f5f9;
    color: #475569 !important;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    display: inline-block;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.badge-tag:hover {
    background-color: #0f766e;
    color: #ffffff !important;
    border-color: #0f766e;
    transform: scale(1.03);
}

.bg-teal-light {
    background-color: rgba(20, 184, 166, 0.08);
}

.text-teal {
    color: #0f766e;
}

/* ==========================================================================
   Frontiers-style Header & Hero Section Customizations
   ========================================================================== */

/* Main Header positioning */
.main-header {
    background-color: #082444 !important; /* Dark Navy for fallback and internal pages */
    border-bottom: 2px solid #0f766e;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Transparent Header Overlay on Homepage only */
.pkp_page_index .main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(8, 36, 68, 0.25) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
    padding: 1.25rem 0;
}

/* Journal Logo & Branding styling */
.journal-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.04em;
    display: inline-block;
    vertical-align: middle;
}

.brand-logo-icon {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-icon {
    transform: scale(1.1);
}

/* Navigation items */
.main-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 2rem !important;
    transition: color 0.15s ease;
    letter-spacing: 0.02em;
}

.main-header .navbar-nav .nav-item {
    margin: 0 0.3rem;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-item.show .nav-link {
    color: #ffffff !important;
}

/* Dropdown Menu overrides */
.custom-dropdown .dropdown-menu {
    background-color: #082444;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.custom-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    transition: all 0.15s ease;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #0f766e;
    color: #ffffff !important;
}

/* Submit Your Research Pill Button */
.submit-research-btn {
    border: 2px solid #ffffff !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    background-color: transparent !important;
    padding: 0.45rem 1.25rem !important;
    font-size: 0.875rem !important;
    letter-spacing: -0.01em;
    transition: all 0.25s ease !important;
}

.submit-research-btn:hover {
    background-color: #ffffff !important;
    color: #082444 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Hero Section */
.frontiers-hero-section {
    position: relative;
    background-image: url('hero_banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Space for the floating header */
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(8, 36, 68, 0.75) 0%, rgba(8, 36, 68, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    z-index: 2;
}

.hero-text-col {
    animation: fadeInUp 0.8s ease-out;
}

.hero-main-title {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .pkp_page_index .main-header {
        position: relative;
        background-color: #082444 !important;
    }
    .frontiers-hero-section {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-main-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Custom Contact Page Styling
   ========================================================================== */
.contact-header-card {
    background-image: url('hero_banner.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: none;
}

.contact-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(8, 36, 68, 0.8) 0%, rgba(8, 36, 68, 0.5) 100%);
    z-index: 1;
}

.contact-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.06) !important;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    flex-shrink: 0;
}

.bg-teal-light {
    background-color: rgba(20, 184, 166, 0.1);
}

.text-teal {
    color: #0f766e !important;
}

.bg-blue-light {
    background-color: rgba(59, 130, 246, 0.1);
}

.text-blue {
    color: #3b82f6 !important;
}

.contact-map-card {
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

.map-placeholder {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 15px 15px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 250, 252, 0.88);
}

/* Contact Form controls */
.contact-form .form-control {
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px !important;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
    background-color: #ffffff;
}

.custom-send-btn {
    background-color: #0f766e !important;
    border-color: #0f766e !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15) !important;
}

.custom-send-btn:hover {
    background-color: #0d5e57 !important;
    border-color: #0d5e57 !important;
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.25) !important;
    transform: translateY(-1px);
}

.z-index-2 {
    z-index: 2;
}

.opacity-90 {
    opacity: 0.9;
}

/* ==========================================================================
   Custom Editorial Board Page Styling
   ========================================================================== */
.editorial-chief-card {
    border: 1px solid rgba(15, 118, 110, 0.08) !important;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.04) !important;
    transition: all 0.25s ease;
    border-radius: 16px !important;
}

.editorial-chief-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.08) !important;
}

.editorial-member-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s ease;
    border-radius: 16px !important;
}

.editorial-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.06) !important;
}

.editorial-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.12);
}

.editorial-avatar-grid {
    width: 130px;
    height: 130px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.08);
}
