/*
Theme Name: Yuzhiku Theme
Theme URI: https://example.com/yuzhiku
Author: Antigravity
Author URI: https://example.com
Description: A premium WordPress theme for Yu Zhi Ku, featuring a modern and responsive design.
Version: 1.0.0
Text Domain: yuzhiku
*/

:root {
    /* Core Branding */
    --brand-teal: #0f766e;
    --brand-teal-light: #ccfbf1;
    --brand-teal-lighter: #f0fdfa;
    --brand-orange: #ea580c;
    --brand-orange-light: #fed7aa;
    --brand-orange-lighter: #fff7ed;
    --brand-blue: #2563eb;
    --brand-blue-light: #eff6ff;

    /* Semantic Colors */
    --primary-color: var(--brand-teal);
    --secondary-color: var(--brand-teal-light);
    --accent-color: var(--brand-orange);
    --success: #10b981;
    --danger: #ef4444;

    /* Neutral Palette */
    --text-dark: #111827;
    --text-gray: #4b5563;
    --text-muted: #94a3b8;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #0a0a0a;
    --border-base: #e5e7eb;

    /* Design Specs */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --container-max: 1400px;
}

/* Base Badge Style */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.badge-teal { background: var(--brand-teal-light); color: var(--brand-teal); }
.badge-orange { background: var(--brand-orange-light); color: var(--brand-orange); }
.badge-blue { background: var(--brand-blue-light); color: var(--brand-blue); }

/* Section Heading */
.section-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtext {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Product author sidebar (single product + author archive) */
.yzk-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 1024px) {
    .yzk-product-layout {
        grid-template-columns: 1fr;
    }
}
.yzk-author-card {
    background: #fff;
    border: 1px solid var(--border-base);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 18px;
    position: sticky;
    top: 90px;
}
@media (max-width: 1024px) {
    .yzk-author-card {
        position: relative;
        top: auto;
    }
}
.yzk-author-card__title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.yzk-author-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 10px 8px 14px;
}
.yzk-author-avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #eef2f7;
    box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
.yzk-author-name {
    font-weight: 800;
    font-size: 1.15rem;
}
.yzk-author-meta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
}
.yzk-author-stat {
    border-left: 1px solid var(--border-base);
    padding-left: 12px;
}
.yzk-author-stat:first-child {
    border-left: none;
    padding-left: 0;
}
.yzk-author-stat__label {
    color: var(--text-muted);
    font-size: .85rem;
}
.yzk-author-stat__value {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 2px;
}
.yzk-author-actions {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.yzk-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-base);
    font-weight: 800;
    font-size: .95rem;
    background: #fff;
}
.yzk-btn--primary {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}
.yzk-recent-list {
    margin-top: 14px;
    border-top: 1px solid var(--border-base);
    padding-top: 12px;
}
.yzk-recent-list__title {
    font-weight: 900;
    margin-bottom: 10px;
}
.yzk-recent-item {
    display: flex;
    gap: 10px;
    padding: 10px 6px;
    border-radius: 10px;
}
.yzk-recent-item:hover {
    background: #f8fafc;
}
.yzk-recent-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.yzk-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.yzk-recent-text {
    min-width: 0;
    flex: 1;
}
.yzk-recent-title {
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yzk-recent-sub {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: .85rem;
}

/* PMPro styling (checkout/levels/account) */
.pmpro {
    font-family: var(--font-main);
}
.pmpro .pmpro_section {
    margin: 0 auto;
    max-width: 980px;
}
.pmpro .pmpro_card {
    background: #fff;
    border: 1px solid var(--border-base);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.pmpro .pmpro_card_title {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-base);
    font-weight: 900;
    color: var(--text-dark);
}
.pmpro .pmpro_card_content {
    padding: 18px 20px;
}
.pmpro .pmpro_form label,
.pmpro .pmpro_form .pmpro_form_label {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}
.pmpro input[type="text"],
.pmpro input[type="email"],
.pmpro input[type="password"],
.pmpro select {
    width: 100%;
    border: 1px solid var(--border-base);
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
    background: #fff;
}
.pmpro input[type="text"]:focus,
.pmpro input[type="email"]:focus,
.pmpro input[type="password"]:focus,
.pmpro select:focus {
    border-color: rgba(15, 118, 110, .55);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .10);
}
.pmpro .pmpro_btn,
.pmpro .pmpro_btn:visited,
.pmpro .pmpro_btn.pmpro_btn-select,
.pmpro input[type="submit"],
.pmpro input[type="button"],
.pmpro button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 900;
    border: 1px solid transparent;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
}
.pmpro .pmpro_btn.pmpro_btn-outline {
    background: #fff;
    color: var(--primary-color);
    border-color: rgba(15, 118, 110, .25);
}
.pmpro .pmpro_message {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-base);
    background: #f8fafc;
    margin-bottom: 16px;
}
.pmpro .pmpro_form_field {
    margin-bottom: 14px;
}
.pmpro .pmpro_submit {
    margin-top: 14px;
}
.pmpro .pmpro_checkout_gateway-none {
    padding: 16px 0;
}

/* Make checkout feel like single centered page */
body.page .pmpro h1,
body.page .pmpro h2 {
    letter-spacing: -0.01em;
}

/* WooCommerce checkout: hide programmatically-hidden fields */
.yzk-hidden-checkout-field {
    display: none !important;
}

/* WooCommerce My Account: 左侧菜单，右侧功能页（使用 flex 布局） */
@media (min-width: 1200px) {
    /* page.php 外层有 .container（默认 1400px），这里专门给“我的账户”放宽到约 2 倍 */
    body.woocommerce-account .page-container > .container {
        /* 跟随屏幕放宽，避免仍被 1400px 卡住 */
        max-width: none !important;
        width: min(2800px, calc(100vw - 80px)) !important;
    }
}

.woocommerce-account .woocommerce {
    /* 面板宽度：桌面端尽量用满可用空间 */
    max-width: none;
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 20px;
    }
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: auto;
}
/* 左侧导航 */
.woocommerce-MyAccount-navigation {
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    position: sticky;
    top: 90px;
    flex: 0 0 220px;
}
@media (max-width: 900px) {
    .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
        flex: 1 1 auto;
    }
}
.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.woocommerce-MyAccount-navigation li {
    list-style: none;
}
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .95rem;
    color: var(--text-dark);
    font-weight: 500;
}
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
    background: var(--brand-teal-lighter);
    color: var(--primary-color);
    font-weight: 700;
}
/* 右侧内容区 */
.woocommerce-MyAccount-content {
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
}

/* 让“选项 + 数据”看起来在同一面：左侧菜单用分隔线即可 */
.woocommerce-account .woocommerce {
    background: #ffffff;
    border: 1px solid var(--border-base);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 22px;
}
.woocommerce-MyAccount-navigation {
    padding-right: 18px;
    border-right: 1px solid var(--border-base);
}
.woocommerce-MyAccount-content {
    padding-left: 18px;
}
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        padding: 18px;
    }
    .woocommerce-MyAccount-navigation {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-base);
        padding-bottom: 12px;
    }
    .woocommerce-MyAccount-content {
        padding-left: 0;
        padding-top: 12px;
    }
}

/* 订单列表：每条记录尽量保持一行（必要时横向滚动） */
.woocommerce-account .woocommerce-MyAccount-content {
    overflow-x: auto;
}
.woocommerce-account table.woocommerce-orders-table,
.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-account table.woocommerce-orders-table th,
.woocommerce-account table.woocommerce-orders-table td,
.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
    white-space: nowrap;
    vertical-align: middle;
}
.woocommerce-account table.woocommerce-orders-table td .button {
    white-space: nowrap;
}
.woocommerce-MyAccount-content h2 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 22px;
    color: var(--text-dark);
}
.woocommerce-MyAccount-content form p {
    margin-bottom: 18px;
}
.woocommerce-MyAccount-content form p.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.woocommerce-MyAccount-content label {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
}
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    border: 1px solid var(--border-base);
    border-radius: 10px;
    font-size: .95rem;
}
.woocommerce-MyAccount-content input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"] {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
}
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
    background: #0d5c56;
}


/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 102, 0.2);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Navigation & Header (Refined) */
.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.site-header .site-branding {
    flex: 0 0 auto;
    min-width: 0;
}

.site-header .site-branding a,
.site-header .site-branding span {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.custom-nav-flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-item-group {
    position: relative !important;
    display: inline-block !important;
}

/* Primary Link Style */
.nav-link-top {
    display: flex !important;
    align-items: center !important;
    line-height: 80px !important;
    padding: 0 15px !important;
    color: #4b5563 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    /* NO STACKING */
    transition: color 0.2s !important;
}

.nav-link-top:hover {
    color: var(--primary-color) !important;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    fill: currentColor;
    transition: transform 0.2s;
}

.menu-item-group:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Dropdown Container */
.sub-menu-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: #ffffff !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    z-index: 10000 !important;
}

/* Show Dropdown on Hover */
.menu-item-group:hover .sub-menu-dropdown {
    display: block !important;
}

.nav-link-sub {
    display: block !important;
    padding: 12px 25px !important;
    font-size: 0.95rem !important;
    color: #4b5563 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s !important;
}

.nav-link-sub:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at top right, var(--secondary-color), transparent);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.client-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Monitoring Section */
.monitoring {
    padding: var(--section-padding);
    background-color: var(--bg-gray);
}

.monitor-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.status-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.chart-placeholder {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

/* Service Section (Dark) */
.services-dark {
    background-color: var(--bg-dark);
    color: white;
    padding: var(--section-padding);
}

.services-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.price-val {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 800;
}

/* Footer：全站与首页一致，黑条与页脚之间无空隙，页脚深色不露白 */
#home-footer-bar {
    margin-bottom: 0 !important;
}
.site-footer {
    margin-top: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 20px !important;
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Content Page Styles */
.page-header {
    background: var(--bg-gray);
    padding: 60px 0;
    margin-bottom: 40px;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* WooCommerce「我的账户」不要被内容页 800px 限宽 */
body.woocommerce-account .entry-content {
    max-width: none;
    margin: 0;
}

/* PMPro 会员开通/注册页：顶部导航白底，页面白底，去掉灰色 */
body.pmpro-checkout .site-header {
    background: #ffffff !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* PMPro 会员开通页：隐藏主题自带的页面标题灰条，改用自定义内容区 */
body.pmpro-checkout .entry-header,
body.pmpro-checkout .entry-title,
body.pmpro-checkout .ast-archive-description {
    display: none !important;
}

/* PMPro 结账页：entry-content 里只保留自定义的 yzk-vip-checkout-wrapper，其它块全部隐藏 */
body.pmpro-checkout .entry-content > *:not(.yzk-vip-checkout-wrapper) {
    display: none !important;
}

/* PMPro 会员确认页：隐藏默认标题，顶部导航与页面白底 */
body.pmpro-confirmation .entry-header,
body.pmpro-confirmation .entry-title,
body.pmpro-confirmation .ast-archive-description {
    display: none !important;
}
body.pmpro-confirmation .site-header {
    background: #ffffff !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.sidebar {
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 10px;
}

/* ========== 全站页脚栏（与首页一致）移动端 ========== */
@media (max-width: 768px) {
    #home-footer-bar {
        padding: 24px 0 20px !important;
    }
    #home-footer-bar .container {
        padding: 0 20px !important;
    }
    #home-footer-bar .container > div {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center;
    }
    #home-footer-bar .container > div > div:first-child > div:last-child {
        justify-content: center;
    }
    #home-footer-bar .container > div > div:nth-child(2) {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    #home-footer-bar .container > div > div:last-child {
        align-items: center !important;
    }
}

/* ========== 移动端自适应 ========== */
html {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section-headline {
        font-size: 1.65rem !important;
        margin-bottom: 14px;
    }
    .section-subtext {
        font-size: 1rem !important;
        margin-bottom: 28px !important;
    }
    /* 智库双栏 → 单栏 */
    #knowledge .container > div {
        flex-direction: column;
    }
    #knowledge .container > div > div {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    /* 专家筛选行 */
    #expert .container > div:last-of-type > div:first-child {
        grid-template-columns: 1fr;
    }
    /* 报告中心左右栏 */
    #report > .container > div {
        flex-direction: column !important;
    }
    #report .container [style*="min-width: 350px"],
    #report .container [style*="min-width: 400px"] {
        min-width: 0 !important;
        width: 100% !important;
    }
    /* 价格路线三卡片 */
    section .container > div[style*="flex-wrap: wrap"] > div {
        min-width: 0 !important;
        width: 100% !important;
    }
    /* 价格大块左右 */
    section .container [style*="min-width: 350px"] {
        min-width: 0 !important;
        width: 100% !important;
    }
    .monitor-grid {
        grid-template-columns: 1fr;
    }
    .client-cards {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .section-headline {
        font-size: 1.4rem !important;
    }
}