/**
 * FIKOM Theme - Additional Custom Styles
 * Minimal styles for Tailwind CSS overlay
 */

/* ========================================
   Preloader
   ======================================== */

#preloader.hidden {
    display: none !important;
}

#page {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.preloader-done #page {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Logo */
.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: preloaderFadeIn 0.8s ease forwards;
}

.preloader-logo-img {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.preloader-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .preloader-logo-img {
        height: 3rem;
    }

    .preloader-subtitle {
        font-size: 0.625rem;
    }

    .preloader-logo {
        margin-bottom: 1.5rem;
    }

    .preloader-spinner {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .preloader-ring-delay {
        inset: 5px;
    }

    .preloader-ring {
        border-width: 2px;
    }

    .preloader-ring-delay {
        border-width: 2px;
    }

    .preloader-status {
        font-size: 0.625rem;
        margin-top: 1.5rem;
    }
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Spinner */
.preloader-spinner {
    position: relative;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffc107;
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

.preloader-ring-delay {
    inset: 6px;
    border-top-color: #ffffff;
    animation: preloaderSpin 0.75s linear infinite reverse;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* Status text */
.preloader-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ========================================
   Animations
   ======================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

/* Glass Card - Navbar Scroll Effect */
#navbar-container.glass-card,
.glass-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* Navbar default state - transparent background */
#navbar-container {
    transition: all 0.3s ease;
    background: transparent !important;
}

/* Navbar hover underline animation */
.nav-link span {
    display: block;
}

.nav-link:hover span {
    width: 100% !important;
}

/* Navbar icons */
.nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
}

.nav-link:hover .fa-chevron-down {
    transform: translateY(2px);
}

/* Language dropdown */
.language-dropdown {
    transition: all 0.3s ease;
}

/* Glass Card Dark - For dark backgrounds (Hero section) */
.glass-card-dark {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Heading Font */
.heading-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #0B633A, #E5A100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-menu li {
    margin: 0;
}

#primary-menu .nav-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

/* Mobile Menu */
#mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-menu li {
    margin: 0;
}

/* Fixed nav container needs relative for mobile menu positioning */
.fixed.top-6 {
    position: relative;
}

/* Bento Item */
.bento-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 1rem 0;
}

.admin-bar .site-header {
    top: 32px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title-text .site-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -0.02em;
}

.site-title-text .site-description {
    font-size: 0.625rem;
    font-weight: 700;
    color: #0B633A;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0B633A;
}

.header-cta .btn-cta {
    background: #1A1A1A;
    color: white;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s;
}

.header-cta .btn-cta:hover {
    background: #0B633A;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #0B633A;
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background: #1A1A1A;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: #E5A100;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-menu ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* ============================================
   CONTENT STYLES
   ============================================ */

/* Custom logo sizing */
.custom-logo {
    max-height: 40px;
    width: auto;
}

/* Fix for WordPress admin bar */
body.admin-bar .fixed {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .fixed {
        top: 46px;
    }
}

/* Image hover effects */
.wp-post-image {
    transition: transform 0.7s ease;
}

/* Navigation menu adjustments */
.main-navigation .menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu-item a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.7);
    transition: all 0.3s ease;
}

.main-navigation .menu-item a:hover {
    color: #0B633A;
}

/* Mobile menu styles */
@media (max-width: 1023px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-open .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Footer widget adjustments */
.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget-title {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

/* Post content styling */
.entry-content {
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 2rem;
}

.entry-content h3 {
    margin-top: 1.5rem;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

/* Search form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input[type="search"] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    flex: 1;
}

.search-form input[type="submit"] {
    padding: 0.5rem 1.5rem;
    background: #0B633A;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

/* Comments styling */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.comment-author {
    font-weight: 600;
}

.comment-meta {
    font-size: 0.875rem;
    color: #666;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.site-main {
    min-height: 60vh;
    background: transparent;
    padding-top: 0;
    padding-bottom: 4rem;
}

.front-page-main {
    padding-top: 0;
    background: transparent;
}

/* Content container */
.site-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Archive/Search header */
.archive-header,
.search-header {
    margin-bottom: 3rem;
    text-align: center;
}

.archive-header h1,
.search-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

/* Post card grid */
.archive-results,
.search-results {
    display: grid;
    gap: 2rem;
}

/* Archive/Search result item */
.archive-result,
.search-result {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (max-width: 640px) {
    .archive-result,
    .search-result {
        grid-template-columns: 1fr;
    }
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a {
    background: white;
    color: #1A1A1A;
    border: 1px solid #e5e7eb;
}

.pagination a:hover {
    background: #0B633A;
    color: white;
    border-color: #0B633A;
}

.pagination .current {
    background: #0B633A;
    color: white;
    border-color: #0B633A;
}

/* ============================================
   FLOATING NAVIGATION
   ============================================ */

.fixed-nav-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1.5rem;
}

.fixed-nav {
    max-width: 72rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.admin-bar .fixed-nav-wrapper {
    top: 4rem;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 2.5rem;
    width: auto;
}

.nav-brand-text {
    display: none;
}

@media (min-width: 640px) {
    .nav-brand-text {
        display: block;
    }
}

.nav-brand-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nav-brand-subtitle {
    font-size: 0.5rem;
    font-weight: 700;
    color: #0B633A;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.nav-menu ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-menu ul {
        display: flex;
    }
}

.nav-menu a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(47, 47, 47, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nav-menu a:hover {
    color: #0B633A;
    border-bottom-color: #E5A100;
}

.nav-cta .btn-cta {
    display: none;
    background: #1A1A1A;
    color: white;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .nav-cta .btn-cta {
        display: inline-flex;
    }
}

.nav-cta .btn-cta:hover {
    background: #0B633A;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #1A1A1A;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background: #1A1A1A;
    transition: all 0.3s;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
}

.mobile-menu-cta {
    margin-top: 1rem;
}

.btn-cta-mobile {
    display: block;
    background: #1A1A1A;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-shape-1 {
    top: 5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(11, 99, 58, 0.05);
}

.hero-shape-2 {
    bottom: 2.5rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(229, 161, 0, 0.05);
}

.hero-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .hero-content {
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 99, 58, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #0B633A;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #0B633A;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #6b7280;
    max-width: 32rem;
    line-height: 1.7;
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-cta {
        justify-content: center;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #0B633A;
    color: white;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    background: #1A1A1A;
}

.btn-hero-primary i {
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.hero-avatars {
    display: flex;
    margin-left: -1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 4px solid white;
    margin-left: -0.5rem;
    object-fit: cover;
}

.avatar-count {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 4px solid white;
    background: #E5A100;
    margin-left: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #1A1A1A;
}

.hero-image-wrapper {
    position: relative;
}

@media (max-width: 1024px) {
    .hero-image-wrapper {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

.hero-image {
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47, 47, 47, 0.8) 0%, transparent 50%);
}

.hero-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.quote-text {
    color: #1A1A1A;
    font-weight: 700;
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.quote-author {
    color: #0B633A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ============================================
   BENTO GRID SECTION
   ============================================ */

.bento-section {
    background: #1A1A1A;
    padding: 8rem 0;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
    color: white;
}

.bento-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bento-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 5rem;
}

.bento-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: white;
}

.bento-subtitle {
    color: rgba(192, 193, 207, 0.6);
    font-weight: 300;
    font-style: italic;
}

.text-turmeric {
    color: #E5A100;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-item {
    border-radius: 3rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: #0B633A;
}

.bento-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    opacity: 0.1;
    font-size: 8rem;
    transition: transform 0.7s;
}

.bento-main:hover .bento-icon {
    transform: scale(1.2);
}

.bento-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.bento-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .bento-main .bento-heading {
        font-size: 1.875rem;
    }
}

.bento-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 16rem;
}

.bento-digital {
    grid-column: span 2;
    background: #F3F4F6;
    color: #1A1A1A;
    flex-direction: row;
    align-items: center;
}

.bento-digital-content {
    flex: 1;
}

.bento-digital .bento-text {
    color: rgba(47, 47, 47, 0.6);
}

.bento-icon-circle {
    width: 4rem;
    height: 4rem;
    background: #E5A100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.bento-item:hover .bento-icon-circle {
    transform: rotate(12deg);
}

.bento-years {
    background: #E5A100;
    color: #1A1A1A;
}

.bento-years-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.bento-years-text {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-alumni {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-alumni i {
    font-size: 1.875rem;
    color: #0B633A;
    margin-bottom: 1rem;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */

.marquee-section {
    background: #0B633A;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee-content {
    white-space: nowrap;
}

.marquee-items {
    display: inline-flex;
    gap: 5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    align-items: center;
    animation: marquee 20s linear infinite;
}

.marquee-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #E5A100;
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 8rem 0;
}

.news-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.news-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #1A1A1A;
}

.news-link {
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom: 2px solid #0B633A;
    padding-bottom: 0.25rem;
    color: #0B633A;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: #E5A100;
    border-bottom-color: #E5A100;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    cursor: pointer;
}

.news-image {
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 1/1;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0B633A;
}

.news-date {
    color: #0B633A;
    font-weight: 900;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    transition: color 0.3s;
}

.news-card:hover .news-card-title {
    color: #0B633A;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 0 1.5rem;
    margin-bottom: 8rem;
}

.cta-container {
    max-width: 72rem;
    margin: 0 auto;
}

.cta-box {
    background: #1A1A1A;
    border-radius: 3rem;
    padding: clamp(3rem, 8vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(11, 99, 58, 0.2);
    filter: blur(100px);
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.btn-cta-primary {
    background: #0B633A;
    color: white;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: white;
    color: #1A1A1A;
}

.btn-cta-secondary {
    background: white;
    color: #1A1A1A;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary:hover {
    background: #E5A100;
    color: #1A1A1A;
}

/* ============================================
   ULTRA MODERN FOOTER
   ============================================ */

.site-footer {
    background: white;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    margin-bottom: 2rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.footer-heading {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #0B633A;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #F3F4F6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #0B633A;
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #f3f4f6;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.625rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.625rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #1A1A1A;
}

/* ============================================
   SITE MAIN RESET FOR FRONT PAGE
   ============================================ */

.front-page-main {
    padding-top: 0;
    background: transparent;
}

/* ============================================
   SINGLE POST MODERN STYLES
   ============================================ */

#reading-progress { transform-origin: left center; }

#floating-share { animation: fadeInLeft 0.5s ease 0.8s both; }

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateY(20px) translateX(-20px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

#floating-share a:hover { animation: none; transform: scale(1.12) !important; }

.article-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(11,99,58,0.1);
    line-height: 1.3;
}

.article-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-content p { margin-bottom: 1.25rem; }

.article-content blockquote {
    border-left: 4px solid #0B633A;
    background: linear-gradient(to right, rgba(11,99,58,0.05), transparent);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 1rem 1rem 0;
    font-style: italic;
    color: #374151;
}

.article-content blockquote p:last-child { margin-bottom: 0; }

.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: 0.5rem; }

.article-content img {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.article-content a {
    color: #0B633A;
    text-decoration: underline;
    text-decoration-color: rgba(11,99,58,0.3);
    text-underline-offset: 3px;
    transition: all 0.2s;
}

.article-content a:hover { color: #E5A100; text-decoration-color: #E5A100; }
.article-content figure { margin: 2rem 0; }

.article-content figcaption {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.toc-item { border-left: 2px solid transparent; transition: all 0.2s; }
.toc-item:hover { border-left-color: #0B633A; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-list li { border-bottom: 1px solid #f0f0f0; padding: 1.5rem 0; }
.comment-list li:last-child { border-bottom: none; }
.comment-author { font-weight: 700; color: #1A1A1A; }
.comment-metadata a { font-size: 0.75rem; color: #9ca3af; }

.page-links a {
    background: #0B633A;
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

#table-of-contents { max-height: 400px; overflow-y: auto; }

@media (max-width: 1023px) {
    #floating-share { display: none !important; }
}

@media print {
    #floating-share, .mobile-share-bar, #toc-container { display: none !important; }
    .article-content { font-size: 11pt; line-height: 1.6; }
}
