/* ============================================
   Free-Video-Converter.RU — New Design
   Mobile-first responsive CSS
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    background: #f5f6f7;
    min-width: 0;
}

a { color: #00788e; text-decoration: underline; }
a:hover { color: #005f70; text-decoration: none; }
img { max-width: 100%; height: auto; border: 0; display: block; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; margin-top: 0; }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.5rem; }
form { margin: 0; padding: 0; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* === Wrapper (flex column for sticky footer) === */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: #00788e;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}

/* Logo */
.h_logo {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #fff;
    flex-shrink: 0;
    line-height: 1.2;
}

.h_logo em {
    font-style: normal;
    font-size: 10px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.h_logo strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav list */
.h_nav { display: flex; align-items: center; }

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.nav-list a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active,
.nav-list a.h_nav_first_active,
.nav-list a.h_nav_last_active {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.centerPart {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    width: 100%;
}

.centerPart h1 {
    font-size: 1.75rem;
    color: #00788e;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.25;
}

.centerPart h2 {
    font-size: 1.35rem;
    color: #00788e;
    margin: 28px 0 12px;
    font-weight: 600;
}

.centerPart h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 22px 0 10px;
    font-weight: 600;
}

.centerPart h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin: 16px 0 8px;
    font-weight: 600;
}

.centerPart p { font-size: 1rem; line-height: 1.75; color: #444; }
.centerPart ul li, .centerPart ol li { margin-bottom: 6px; line-height: 1.65; }

.line {
    height: 2px;
    background: #e8e8e8;
    margin: 28px 0;
    border: none;
}

/* ============================================
   TWO-COLUMN LAYOUT (.contentSideBox)
   ============================================ */
.contentSideBox {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.csb_content {
    flex: 1;
    min-width: 0;
}

.csb_sideCol {
    width: 255px;
    flex-shrink: 0;
}

.contentSideBox.product {
    padding-top: 24px;
    margin-top: 4px;
}

/* ============================================
   MAIN BOX (index, product pages)
   ============================================ */
.mainBox {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.sideMainBox {
    width: 280px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.sideMainBox img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 100%;
}

.contMainBox { flex: 1; min-width: 0; }
.contMainBox p, .contMainBox h2 { margin-left: 0; margin-right: 0; }

/* ============================================
   DOWNLOAD BUTTON
   ============================================ */
.c_downloadP1,
.c_downloadP2 {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 6px;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    width: 100%;
    height: auto !important;
    position: static !important;
}

.c_downloadP1 > a,
.c_downloadP2 > a {
    grid-column: 1;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    background: linear-gradient(135deg, #f5a623, #e8901a);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    position: static !important;
    width: auto !important;
    height: auto !important;
    white-space: nowrap;
}

.c_downloadP1 > a:hover,
.c_downloadP2 > a:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

.c_downloadP1 > a em,
.c_downloadP2 > a em {
    display: block;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.85;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 3px;
}

/* Row 1: ОС — spans spacer + both info cols */
.s_system {
    grid-column: 3 / 5;
    grid-row: 1;
    font-size: 0.9rem;
    color: #555;
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    text-align: right;
    white-space: nowrap;
}

/* Row 2: Версия | Размер */
.s_version {
    grid-column: 3;
    grid-row: 2;
    font-size: 0.9rem;
    color: #555;
    margin: 0 !important;
    position: static !important;
    white-space: nowrap;
    text-align: right;
}

.s_size {
    grid-column: 4;
    grid-row: 2;
    font-size: 0.9rem;
    color: #555;
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    white-space: nowrap;
    text-align: right;
}

/* Row 3: русская версия */
.s_clean {
    grid-column: 3 / 5;
    grid-row: 3;
    font-size: 0.9rem;
    color: #555;
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    text-align: right;
}

.s_system span, .s_version span,
.s_size span, .s_clean span {
    color: #00788e;
    font-weight: 600;
}

/* ============================================
   SIDEBAR BOXES
   ============================================ */
.sd_list_1,
.sd_list_2 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    width: auto !important;
    padding: 0 !important;
}

.sd_list_1 > h3,
.sd_list_2 > h3 {
    background: #00788e;
    color: #fff;
    margin: 0;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    height: auto !important;
    text-align: left !important;
    letter-spacing: 0.3px;
}

.sd_list_1 ul, .sd_list_2 ul {
    margin: 0;
    padding: 6px 0 8px;
    list-style: none;
    background: none !important;
}

.sd_list_1 ul li, .sd_list_2 ul li {
    padding: 7px 14px;
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    line-height: 1.45;
    background: none !important;
}

.sd_list_1 ul li:last-child,
.sd_list_2 ul li:last-child { border-bottom: none; }

.sd_list_1 ul li a,
.sd_list_2 ul li a {
    color: #00788e;
    font-size: 0.85rem;
    text-decoration: none;
}

.sd_list_1 ul li a:hover,
.sd_list_2 ul li a:hover { text-decoration: underline; }

/* ============================================
   PRODUCT TABS
   ============================================ */
.productDiv {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    width: auto !important;
    margin-bottom: 24px;
    background-image: none !important;
}

.p_nav {
    display: flex;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #00788e;
    list-style: none;
    background: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.p_nav li {
    flex: 1;
    float: none !important;
    height: auto !important;
    background: none !important;
}

.p_nav li a {
    display: block;
    text-align: center;
    padding: 11px 6px;
    color: #555;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    background: none !important;
    height: auto !important;
    line-height: 1.4 !important;
    width: 100% !important;
    transition: background 0.15s, color 0.15s;
}

.p_nav li.active a,
.p_nav li:hover a {
    background: #00788e !important;
    color: #fff !important;
}

#pd_kf, #pd_f, #pd_hu, #pd_oc {
    display: none;
    padding: 22px 24px;
}

#pd_kf.active, #pd_hu.active { display: block; }
#pd_f.active { display: flex; gap: 6%; }
#pd_oc.active { display: flex; gap: 32px; }

#pd_kf h3, #pd_f h3, #pd_hu h3, #pd_oc h3 {
    color: #00788e;
    font-size: 1.15rem;
    height: auto !important;
    border: none !important;
    padding: 0 !important;
    background: none !important;
    margin: 0 0 12px;
}

#pd_kf ul, #pd_f ul, #pd_hu ul, #pd_oc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible !important;
}

#pd_kf ul li, #pd_hu ul li {
    padding: 11px 8px 11px 20px;
    border-top: 1px solid #eee;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    background: none !important;
    color: #333;
}

#pd_oc ul li {
    padding: 12px 0;
    border-top: 1px solid #eee;
    margin: 0;
}

/* Formats tab columns */
.pd_f_left, .pd_f_right {
    flex: 1;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    overflow: hidden;
}

/* Reviews tab columns */
.pd_oc_left { flex: 1; width: auto !important; float: none !important; margin: 0 !important; }
.pd_oc_right { width: auto !important; float: none !important; }

/* Contact form in reviews tab */
.pd_oc_form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px;
    width: auto !important;
}

.pd_oc_form form {
    width: auto !important;
    background: none !important;
    padding: 0 !important;
}

.pd_oc_form input[type="text"],
.pd_oc_form textarea {
    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 5px;
    padding: 8px 10px;
    background: #fff !important;
    margin: 0 0 8px !important;
    height: auto !important;
    color: #333;
}

.pd_oc_form form p { margin: 0 0 8px; }

.pd_oc_submit {
    background: #00788e !important;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    width: auto !important;
    height: auto !important;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.pd_oc_submit:hover { background: #005f70 !important; }

/* ============================================
   PRODUCTS DOWNLOAD TABLE
   ============================================ */
.csb_s_downloadTable {
    width: 100% !important;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}

.csb_s_downloadTable td {
    padding: 11px 10px;
    border: 1px solid #e8e8e8 !important;
    vertical-align: middle;
    width: auto !important;
    height: auto !important;
    background: none;
}

.csb_s_downloadTable tr.v_1 td { background: #f8f9fa; }
.csb_s_downloadTable tr.v_2 td { background: #fff; }
.csb_s_downloadTable tr:hover td { background: #e8f5f8 !important; }

.csb_s_downloadTable td.name { font-size: 0.95rem; font-weight: 500; }

.csb_s_downloadTable td.download a,
.csb_s_downloadTable td.overview a,
.csb_s_downloadTable td.how a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}

.csb_s_downloadTable td.download a {
    background: #00788e;
    color: #fff !important;
    background-image: none !important;
    padding: 5px 14px;
}

.csb_s_downloadTable td.download a:hover { background: #005f70; }

.csb_s_downloadTable td.overview a,
.csb_s_downloadTable td.how a {
    color: #00788e;
    border: 1px solid #00788e;
    background-image: none !important;
    padding: 5px 10px;
}

.csb_s_downloadTable td.overview a:hover,
.csb_s_downloadTable td.how a:hover { background: #00788e; color: #fff; }

/* ============================================
   HELP PAGE
   ============================================ */
.csb_h_q {
    font-size: 1rem;
    font-weight: 700;
    color: #00788e;
    margin: 24px 0 10px;
    padding: 10px 14px;
    background: #e8f5f8 !important;
    border-left: 4px solid #00788e;
    border-radius: 0 6px 6px 0;
    height: auto !important;
    line-height: 1.4 !important;
    background-image: none !important;
}

.g_list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    overflow: visible !important;
}

.g_list li {
    border-top: 1px solid #eee;
    padding: 10px 10px 10px 16px;
    margin: 0;
    background: none !important;
    line-height: 1.6;
}

.g_list li a { font-size: 1rem; color: #00788e; text-decoration: none; }
.g_list li a:hover { text-decoration: underline; }

/* ============================================
   OTHER ELEMENTS
   ============================================ */
.p_link2 {
    display: inline-block;
    margin: 20px 22px;
    background: #00788e;
    color: #fff !important;
    text-decoration: none !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    transition: background 0.2s;
}

.p_link2:hover { background: #005f70 !important; color: #fff !important; }

.howtouse {
    display: inline-block;
    color: #00788e;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 6px 0;
    background: none !important;
    height: auto !important;
    margin: 8px 0;
    line-height: 1.4 !important;
}

/* Contact form */
.countactUs { max-width: 500px; }

.countactUs input[type="text"],
.countactUs input[type="email"],
.countactUs select,
.countactUs textarea {
    display: block;
    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 6px;
    padding: 10px 12px;
    margin: 4px 0 12px !important;
    background: #fff !important;
    color: #333;
    font-size: 0.95rem;
    height: auto !important;
}

.countactUs input.submit {
    background: #00788e !important;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    width: auto !important;
    height: auto !important;
    display: inline-block;
}

.countactUs input.submit:hover { background: #005f70 !important; }

/* YouTube page */
.yd_input {
    border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 1rem !important;
    width: 100% !important;
    height: auto !important;
}

.you_tube_button,
.you_tube_button_a {
    background: #00788e !important;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    height: auto !important;
    width: auto !important;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 1.4 !important;
    margin: 4px 0;
    transition: background 0.15s;
}

.you_tube_button:hover,
.you_tube_button_a:hover { background: #005f70 !important; }

/* Hide legacy SEO/ad elements */
#seo_text, p.ad, p.shop { display: none !important; }
.ad { display: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1e2a33;
    color: #8eaab3;
    position: static !important;
    height: auto !important;
    width: 100% !important;
    bottom: auto !important;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 20px 20px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 180px; }

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Brand list in footer */
.f_brandList {
    font-size: 0.85rem;
    line-height: 2.2;
    margin: 0;
    color: #8eaab3;
}

.f_brandList a { color: #8eaab3; text-decoration: none; }
.f_brandList a:hover { color: #fff; }
.f_brandList span { margin: 0 6px; opacity: 0.35; }

/* Formats in footer */
.f_formats {
    font-size: 0.85rem;
    line-height: 2.2;
    margin: 0;
    color: #8eaab3;
    position: static !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
}

.f_formats a { color: #8eaab3; text-decoration: none; }
.f_formats a:hover { color: #fff; }
.f_formats span { margin: 0 4px; opacity: 0.35; }

/* Contact in footer */
.f_th {
    font-size: 0.875rem;
    line-height: 1.8;
    margin: 0;
    color: #8eaab3;
    position: static !important;
    top: auto !important;
    left: auto !important;
}

.f_th a { color: #8eaab3 !important; text-decoration: none; }
.f_th a:hover { color: #fff !important; }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.f_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    width: auto !important;
}

.f_list li {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}

.f_list li.first { background: none !important; }

.f_list a {
    color: #8eaab3;
    font-size: 0.85rem;
    text-decoration: none;
    float: none !important;
    display: inline !important;
}

.f_list a:hover { color: #fff; }

.f_copyright {
    color: #4e6570;
    font-size: 0.8rem;
    margin: 0;
    position: static !important;
    top: auto !important;
    left: auto !important;
}

/* Empty ad sidebar — hide when RTB block is empty (ads not loaded) */
.csb_sideCol:has(> div:empty) {
    display: none;
}

/* Override old footer class positioning */
.footer1, .footer2, .f2_formats, .f2_contactus {
    position: static !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    width: auto !important; height: auto !important;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 860px) {
    /* Hamburger nav */
    .nav-toggle { display: flex; }

    .h_nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #006070;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 199;
    }

    .h_nav.open { max-height: 260px; }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 8px 0 12px;
    }

    .nav-list a {
        padding: 12px 20px;
        border-radius: 0;
        font-size: 0.95rem;
        opacity: 1;
    }

    /* Stack two-column layouts */
    .contentSideBox { flex-direction: column; }
    .csb_sideCol { width: 100%; }

    .mainBox { flex-direction: row; align-items: flex-start; gap: 20px; }
    .sideMainBox { width: 140px; flex-shrink: 0; max-width: 140px; }
    .sideMainBox a { display: none; }

    /* Tab columns stack */
    #pd_f { flex-direction: column; gap: 0; }
    .pd_f_left { margin-bottom: 16px !important; }

    .footer-inner { gap: 20px; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 580px) {
    .header-inner { height: 54px; }
    .h_nav { top: 54px; }
    .h_logo strong { font-size: 15px; }

    .centerPart {
        padding: 18px 14px 40px;
    }

    .centerPart h1 { font-size: 1.35rem; }
    .centerPart h2 { font-size: 1.15rem; }

    /* Stack download button vertically on mobile */
    .c_downloadP1, .c_downloadP2 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px;
    }

    .c_downloadP1 > a, .c_downloadP2 > a {
        grid-column: unset;
        grid-row: unset;
        align-self: auto;
        text-align: center;
        font-size: 1.05rem;
        padding: 13px 16px;
        white-space: normal;
    }

    .s_system, .s_version, .s_size, .s_clean {
        grid-column: unset;
        grid-row: unset;
        text-align: left;
        white-space: normal;
        font-size: 0.85rem;
    }

    .s_system { order: 1; }
    .s_version, .s_size { display: inline; }
    .s_clean { order: 3; }

    /* Responsive table for products */
    .csb_s_downloadTable,
    .csb_s_downloadTable tbody,
    .csb_s_downloadTable tr,
    .csb_s_downloadTable td { display: block; width: 100% !important; }

    .csb_s_downloadTable tr {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .csb_s_downloadTable td {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 9px 12px;
    }

    .csb_s_downloadTable td:last-child { border-bottom: none !important; }

    .p_nav { flex-wrap: wrap; }
    .p_nav li { flex: 1 1 50%; }

    .footer-inner {
        flex-direction: column;
        gap: 0;
        padding: 20px 14px 10px;
    }

    .footer-col { min-width: 0; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 6px;
    }
}
