• File: index.css
  • Full Path: /home/caldasan/public_html/anterior.caldasantioquia.gov.co/newstart/index.css
  • Date Modified: 06/25/2026 1:41 AM
  • File size: 22.38 KB
  • MIME-type: --
  • Charset: utf-8
/* ==========================================================
   DESIGN SYSTEM & GLOBAL STYLES
   ========================================================== */
:root {
    /* Government Color Palette */
    --caldas-blue: #0c49c3;
    --caldas-blue-dark: #004fb1;
    --caldas-blue-light: #e5efff;
    --caldas-red: #ed3237;
    --caldas-grey-bg: #f4f2f0;
    --caldas-white: #ffffff;
    --caldas-dark-grey: #434343;
    --caldas-light-grey: #718096;
    
    /* Modern Web3 Accent Palette */
    --web3-indigo: #6366f1;
    --web3-indigo-glow: rgba(99, 102, 241, 0.15);
    --web3-violet: #8b5cf6;
    --web3-violet-glow: rgba(139, 92, 246, 0.15);
    
    /* Layout Configurations */
    --content-max-width: 1140px;
    --site-font-family: 'PT Sans Narrow', sans-serif;
    --heading-font-family: 'Poppins', sans-serif;
    --body-font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--caldas-grey-bg);
    color: var(--caldas-dark-grey);
    font-family: var(--body-font-family);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--caldas-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--caldas-red);
}

.site-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================================
   HEADER STYLE (100% Replication of Caldas Website)
   ========================================================== */
#masthead {
    background: var(--caldas-white);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 1. Top Blue Government Bar */
.site-top-header-wrap {
    background: var(--caldas-blue);
    color: var(--caldas-white);
    padding: 6px 0;
    font-family: var(--heading-font-family);
    font-size: 13px;
    font-weight: 500;
}

.site-top-header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-top-section-left .header-html img {
    display: block;
}

.site-header-top-section-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.transparencia-link a {
    color: var(--caldas-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.transparencia-link a img {
    border-radius: 50%;
}

.transparencia-link a:hover {
    opacity: 0.9;
}

.social-icons-inner {
    display: flex;
    gap: 8px;
}

.social-icons-inner .social-button {
    background: var(--caldas-white);
    color: var(--caldas-blue);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.social-icons-inner .social-button:hover {
    background: var(--caldas-white);
    color: var(--caldas-red);
    transform: translateY(-2px);
}

/* 2. Main Navigation Bar */
.site-main-header-wrap {
    background: var(--caldas-white);
    border-bottom: 1px solid #f0f0f0;
}

.site-main-header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

.site-branding .brand img.custom-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

/* Primary Navigation Desktop */
.main-navigation .primary-menu-container > ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-navigation .primary-menu-container > ul > li {
    position: relative;
    padding: 0 12px;
}

.main-navigation .primary-menu-container > ul > li > a {
    color: #4a5568;
    font-family: var(--site-font-family);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 30px 0;
    display: inline-block;
    position: relative;
}

.main-navigation .primary-menu-container > ul > li > a:hover,
.main-navigation .primary-menu-container > ul > li.active > a {
    color: var(--caldas-blue);
}

.main-navigation .primary-menu-container > ul > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--caldas-blue);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Dropdown Sub-menus */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0066cd;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-navigation .primary-menu-container > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-navigation .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .sub-menu a {
    color: var(--caldas-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    display: block;
    font-family: var(--heading-font-family);
}

.main-navigation .sub-menu a:hover {
    background: var(--caldas-dark-grey);
    color: var(--caldas-white);
}

/* Mobile Hamburger Toggle button */
.mobile-menu-toggle-wrap {
    display: none;
}

.menu-toggle {
    background: transparent;
    border: 1px solid var(--caldas-blue);
    border-radius: 5px;
    color: var(--caldas-blue);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--caldas-blue);
    color: var(--caldas-white);
}

/* ==========================================================
   MOBILE DRAWER NAVIGATION (Perfect Kadence Style)
   ========================================================== */
.popup-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #0066cd;
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.popup-drawer.show-drawer {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    display: none;
}

body.showing-popup-drawer .drawer-overlay {
    display: block;
}

.drawer-inner {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.menu-toggle-close {
    background: transparent;
    border: none;
    color: var(--caldas-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-navigation ul.mobile-menu {
    list-style: none;
}

.mobile-navigation ul.mobile-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation ul.mobile-menu a {
    color: var(--caldas-white);
    display: block;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--heading-font-family);
}

.mobile-navigation ul.mobile-menu a:hover,
.mobile-navigation ul.mobile-menu li.active > a {
    background: var(--caldas-blue-dark);
}

.drawer-item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-menu-toggle {
    background: transparent;
    border: none;
    color: var(--caldas-white);
    padding: 12px 15px;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sub-menu {
    list-style: none;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-sub-menu.show-submenu {
    display: block;
}

.mobile-sub-menu a {
    padding-left: 25px;
    font-size: 13px;
}

/* ==========================================================
   HERO / BANNER SECTION
   ========================================================== */
.entry-hero.page-hero-section {
    background-color: var(--caldas-blue);
    background-image: linear-gradient(135deg, var(--caldas-blue) 0%, #052669 100%);
    position: relative;
    color: var(--caldas-white);
    padding: 50px 0;
    text-align: left;
}

.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.entry-hero-container-inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumbs Style */
.kadence-breadcrumbs {
    font-family: var(--heading-font-family);
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.kadence-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.kadence-breadcrumbs a:hover {
    color: var(--caldas-white);
    text-decoration: underline;
}

.kadence-breadcrumbs .separator {
    font-size: 10px;
    opacity: 0.6;
    display: flex;
    align-items: center;
}

.kadence-breadcrumbs .current {
    color: var(--caldas-white);
    font-weight: 600;
}

/* Title Header */
.entry-header h1.entry-title {
    font-family: var(--heading-font-family);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    font-family: var(--body-font-family);
}

/* ==========================================================
   MAIN CONTENT AREA & BILINGUAL LAYOUT
   ========================================================== */
.site-main {
    margin-top: 40px;
    margin-bottom: 60px;
}

.card-container {
    background: var(--caldas-white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0px 15px 30px -15px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
}

/* Document Meta Details */
.document-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--caldas-light-grey);
    margin-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.document-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.document-meta i {
    color: var(--caldas-blue);
}

/* Grid Layout for Bilingual Columns */
.bilingual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lang-zh {
    border-right: 1px dashed #e0e0e0;
    padding-right: 20px;
}

.lang-pt {
    padding-left: 10px;
}

/* Typography elements */
.section-heading {
    font-family: var(--heading-font-family);
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--caldas-blue);
}

.lang-pt .section-heading::after {
    background: var(--caldas-red);
}

.lead-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 400;
}

.elegant-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0 15%, #e2e8f0 85%, transparent);
    margin: 40px 0;
}

/* Features Block */
.highlight-title-main {
    font-family: var(--heading-font-family);
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-decor {
    color: #fcb92d;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    background: var(--caldas-white);
    border-color: var(--caldas-blue-light);
}

.feature-icon-wrapper {
    background: var(--caldas-blue-light);
    color: var(--caldas-blue);
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    color: var(--web3-violet);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.1);
    color: var(--web3-indigo);
}

.feature-card-content h4 {
    font-family: var(--heading-font-family);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.feature-card-content p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 12px;
}

.feature-card-content .lang-pt {
    border-top: 1px dashed #e2e8f0;
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 0;
}

.feature-card-content .lang-zh {
    border-right: none;
    padding-right: 0;
}

/* Tech Partnerships (Web3 Theme cards for Domainroc & namepopo) */
.partners-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-card {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: var(--caldas-white);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#card-domainroc {
    border-left: 5px solid var(--web3-indigo);
}

#card-namepopo {
    border-left: 5px solid var(--web3-violet);
}

.partner-card:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#card-domainroc:hover {
    border-color: var(--web3-indigo);
    background: linear-gradient(to right, var(--calmain-white), var(--web3-indigo-glow));
}

#card-namepopo:hover {
    border-color: var(--web3-violet);
    background: linear-gradient(to right, var(--calmain-white), var(--web3-violet-glow));
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

#card-domainroc .partner-logo-box i {
    color: var(--web3-indigo);
}

#card-namepopo .partner-logo-box i {
    color: var(--web3-violet);
}

.partner-brand {
    font-family: var(--heading-font-family);
    color: #0f172a;
}

.partner-role {
    font-family: var(--heading-font-family);
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
}

.partner-body {
    padding: 24px;
}

.bilingual-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.bilingual-split .lang-zh {
    border-right: 1px dashed #e2e8f0;
    padding-right: 15px;
}

.bilingual-split .lang-pt {
    padding-left: 0;
}

.bilingual-split p {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

.partner-link {
    font-weight: 600;
    text-decoration: underline;
}

#card-domainroc .partner-link {
    color: var(--web3-indigo);
}

#card-namepopo .partner-link {
    color: var(--web3-violet);
}

.partner-action {
    display: flex;
    justify-content: flex-end;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--caldas-white);
    transition: all 0.3s ease;
}

#card-domainroc .btn-partner {
    background: var(--web3-indigo);
}

#card-domainroc .btn-partner:hover {
    background: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

#card-namepopo .btn-partner {
    background: var(--web3-violet);
}

#card-namepopo .btn-partner:hover {
    background: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Closing Block */
.closing-box {
    background: #f8fafc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}

.closing-box .bilingual-grid {
    gap: 30px;
}

.closing-box .lang-zh {
    border-right: 1px dashed #d1d5db;
    padding-right: 15px;
}

.closing-box .lang-pt {
    padding-left: 0;
}

.closing-text {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
}

.closing-signature {
    font-size: 13px;
    color: #1e293b;
    font-family: var(--heading-font-family);
}

/* ==========================================================
   FOOTER STYLE (100% Replication of Caldas Website)
   ========================================================== */
.site-footer {
    background: #181d28;
    color: #a0aec0;
    font-size: 14px;
    font-family: var(--body-font-family);
}

.elementor-footer-container {
    background: linear-gradient(135deg, #1d2331 0%, #0f131c 100%);
    padding: 60px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Col 1: Brand & Shield */
.brand-col .footer-header-title {
    font-family: var(--heading-font-family);
    font-size: 20px;
    font-weight: 700;
    color: var(--caldas-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.footer-shield-wrap {
    margin-bottom: 25px;
}

.footer-shield {
    display: block;
}

.footer-copyright-text {
    font-size: 12px;
    line-height: 1.5;
    color: #718096;
}

/* Footer Col 2: Info List */
.footer-info-list {
    list-style: none;
}

.footer-info-list li {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 13px;
    color: #cbd5e0;
}

.footer-info-list li strong {
    color: var(--caldas-white);
}

.schedule-detail {
    display: block;
    margin-top: 5px;
    padding-left: 10px;
    color: #a0aec0;
    border-left: 2px solid var(--caldas-blue);
}

/* Footer Col 3: PQRSDF Attention box */
.pqrsdf-attention-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.pqrsdf-attention-box h3 {
    font-family: var(--heading-font-family);
    font-size: 18px;
    font-weight: 700;
    color: var(--caldas-white);
    margin-bottom: 12px;
}

.pqrsdf-attention-box p {
    font-size: 12px;
    line-height: 1.5;
    color: #a0aec0;
    margin-bottom: 16px;
}

.btn-pqrsdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #61ce70;
    color: var(--caldas-white);
    font-family: var(--heading-font-family);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-pqrsdf:hover {
    background: #4ec25e;
    box-shadow: 0 10px 20px -5px rgba(97, 206, 112, 0.3);
    color: var(--caldas-white);
}

.footer-social-wrapper {
    display: flex;
    gap: 12px;
}

.footer-social-wrapper .social-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--caldas-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-wrapper .social-icon:hover {
    background: var(--caldas-blue);
    transform: translateY(-3px);
}

/* Bottom Link Cards row (Privacy, Contact, Map) */
.footer-link-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.footer-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f0f0f0;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    text-align: center;
}

.footer-link-card i {
    font-size: 22px;
    color: #666;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link-card span {
    font-family: var(--heading-font-family);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-link-card:hover {
    background: #333;
    color: var(--caldas-white);
    border-color: #333;
}

.footer-link-card:hover i {
    color: var(--caldas-white);
}

/* Bottom Logos bar (Gov logo panel) */
.footer-bottom-logos-bar {
    background: var(--caldas-white);
    padding: 20px 0;
}

.footer-logos-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.footer-logo-link {
    display: block;
}

.footer-logo-link img {
    display: block;
    max-height: 45px;
    width: auto;
}

.logo-separator {
    display: block;
}

/* ==========================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================== */
@media (max-width: 1024px) {
    /* Header adjustments */
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle-wrap {
        display: block;
    }
    
    .site-main-header-inner-wrap {
        min-height: 70px;
    }
    
    /* Content adjustments */
    .bilingual-grid,
    .bilingual-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lang-zh {
        border-right: none;
        border-bottom: 1px dashed #e2e8f0;
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .lang-pt {
        padding-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-link-cards-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    /* Hero adjustments */
    .entry-hero.page-hero-section {
        padding: 30px 0;
    }
    
    .entry-header h1.entry-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .card-container {
        padding: 20px;
    }
    
    /* Topbar adjustments */
    .site-top-header-inner-wrap {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .site-header-top-section-right {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Closing box adjustments */
    .closing-box .bilingual-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-box .lang-zh {
        border-right: none;
        border-bottom: 1px dashed #d1d5db;
        padding-right: 0;
        padding-bottom: 15px;
    }
}