/* ========================================
   SKINWTR 水初语 - 首页样式 home.css
   包含：Banner 轮播、服务保障、VIP推广、产品系列、品牌力量、新品网格、地图信息区
   ======================================== */

/* ===== 1. Banner 轮播区 ===== */
.home-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--color-gradient-light);
}
.home-banner .layui-carousel,
.home-banner .layui-carousel > [carousel-item] > *,
.home-banner .banner-item {
    height: 100% !important;
}
/* 去掉 layui.css 内置的轮播加载占位图标（齿轮），不修改第三方库 */
.home-banner .layui-carousel > [carousel-item]:before {
    content: none;
}
.banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-banner .container {
    position: relative;
    z-index: 2;
}
.banner-content {
    max-width: 560px;
    padding: 40px 0;
}
.banner-tag {
    display: inline-block;
    background: rgba(26,58,122,.1);
    color: var(--color-primary);
    font-size: 12px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.banner-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.banner-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 460px;
}
.banner-actions { display: flex; gap: 16px; }

/* 轮播指示器位置 */
.home-banner .layui-carousel-ind {
    bottom: 30px !important;
}
.home-banner .layui-carousel-ind ul {
    background: rgba(0,0,0,.2) !important;
    padding: 4px 8px !important;
    border-radius: var(--radius-pill) !important;
}
.home-banner .layui-carousel-ind li {
    background: rgba(255,255,255,.5) !important;
}
.home-banner .layui-carousel-ind li.layui-this {
    background: var(--color-primary) !important;
}

/* ===== 2. 品牌标语区（纯文本居中，前三项高亮） ===== */
.home-service {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}
.home-service .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
.home-service .service-text {
    color: var(--color-text);
    line-height: 1.8;
}
/* 前三项：品牌主色 #2335B0 */
.home-service .service-text:nth-child(-n+3) {
    color: #2335B0;
}
.home-service .service-text:nth-child(1) {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 22px; /* 第1→第2 间隔 */
}
.home-service .service-text:nth-child(2) {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}
.home-service .service-text:nth-child(3) {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: .85;
    margin-bottom: 22px; /* 第3→第4 间隔（与第1→第2 相等） */
}
.home-service .service-text--desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    max-width: 720px;
    margin-top: 0; /* 第3→第4 间隔已由第3项 margin-bottom 统一控制 */
}
/* 年份分隔线：两端文字 + 中间一条自适应实线 */
.home-service .service-year {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;            /* 铺满 .container 内容宽度 */
    color: #DCDDDD;
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 22px;       /* 与上方描述块保持同等的 22px 间隔 */
}
.home-service .service-year__dash {
    flex: 1;                /* 占据中间剩余全部宽度，长度自适应 */
    height: 0;
    margin: 0 18px;
    border-bottom: 2px solid #DCDDDD; /* 一条笔直实线 */
}
.service-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-item .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
}
.service-item .service-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}
.service-item .service-text p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ===== 3. 敏感肌专研中心（标题 + 6 列图标网格） ===== */
.home-sensitive {
    background: #DCDDDD;
    color: #B5B6B6;
    padding: 56px 0 64px;
}
.sensitive-header {
    text-align: center;
    margin-bottom: 48px;
}
.sensitive-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 22px;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}
.sensitive-title__sep {
    display: inline-block;
    width: 1px;
    height: 22px;
    background: var(--color-primary);
    opacity: .35;
    transform: translateY(2px);
}
.sensitive-title__sub {
    font-weight: 500;
}
.sensitive-subtitle {
    font-size: 13px;
    color: #B5B6B6;
    letter-spacing: 2px;
}
/* 6 列图标网格 */
.sensitive-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: start;
}
.sensitive-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sensitive-item__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.sensitive-item__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 图标与文字之间的横杠 */
.sensitive-item__bar {
    width: 32px;
    height: 1px;
    background: #B5B6B6;
    margin-bottom: 12px;
}
.sensitive-item__label {
    font-size: 14px;
    color: #B5B6B6;
    line-height: 1.4;
    margin: 0;
}
.home-other-img{
    width: 80%;
    margin: 3% auto;
}
.home-other-img img{
    width: 100%;
}

/* ===== 4. 产品系列 — 严格按设计图：左图 + 右文（文字整体右对齐）+ 中下浮动产品图 ===== */
.home-product {
    background: #fff;
    padding: 0 20%;   /* 左右各留 20% 空间 */
}
.home-product .container {
    max-width: 100%;
    padding: 0;
}
.home-product-item {
    padding-top: 3%;
    position: relative;          /* 容器：承载浮动产品图的绝对定位 */
    display: flex;
    align-items: stretch;
    height: 560px;               /* 确定高度，供 .home-product-image 的 height:60% 解析 */
    min-height: 560px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    margin: 5% 0;                /* item 之间上下各 5% 间距（外边距合并后即 5%） */
}
.home-product-item:last-child { border-bottom: none; }
.home-product-item.home-product-right { flex-direction: row-reverse; }
.home-product-image {
    flex: 0 0 55%;
    height: 72%;                 /* 占 .home-product-item 高度的 60% */
    align-self: flex-start;      /* 顶部对齐，与右文顶部对齐 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fb;
    padding: 0;
    overflow: hidden;
}
.home-product-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}
.home-product-info {
    flex: 0 0 45%;
    padding: 0 40px 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* 整体右对齐 */
    text-align: right;
    position: relative;
    z-index: 2;              /* 浮于产品图之上，避免按钮被遮挡 */
}
.home-product-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 28px;
    line-height: 1.8;
}
.home-product-top-label {
    color: var(--color-text-secondary);
    font-size: 15px;
    letter-spacing: .5px;
}
.home-product-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: 1px;
}
.home-product-keywords {
    color: var(--color-text-secondary);
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.home-product-bottom {
    margin-top: 24px;
    color: var(--color-text-light);
    font-size: 13px;
    line-height: 1.8;
    max-width: 360px;
    letter-spacing: .3px;
}
.btn-home-product {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    padding: 12px 36px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    letter-spacing: 1px;
}
.btn-home-product::after {
    content: "\003E";       /* > 箭头 */
    font-size: 12px;
    margin-left: 6px;
    transition: var(--transition);
}
.btn-home-product:hover {
    background: var(--color-primary-light);
    color: #fff;
    transform: translateX(2px);
}
.btn-home-product:hover::after { margin-left: 10px; }

/* 第 2、4 项（home-product-right）：信息区左对齐 */
.home-product-item.home-product-right .home-product-info {
    align-items: flex-start;
    text-align: left;
}
.home-product-item.home-product-right .home-product-top {
    align-items: flex-start;
}
.home-product-item.home-product-right .btn-home-product {
    align-self: flex-start;
}

/* 中下浮动产品图 — 居中、占 item 宽 30% */
.home-product-float {
    position: absolute;
    left: 50%;                            /* 水平居中于整个 item */
    bottom: 0;
    transform: translateX(-50%);
    width: 30%;
    max-width: 320px;
    z-index: 3;
    pointer-events: none;                 /* 装饰图，不拦截下方点击 */
    animation: home-product-float 4s ease-in-out infinite;
}
.home-product-float img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,.18));
}
@keyframes home-product-float {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, -10px); }
}

/* ===== 5. 品牌力量（严格按设计图：浅灰背景 + 左侧文字 + 右侧视频封面图） ===== */
.home-brand-power {
    background: #fff;                /* 左右 10% 空位为白底 */
    color: var(--color-primary);
    overflow: hidden;
    padding: 3rem 0;                /* 上下留白，仅中间 80% 有灰底 */
}
.brand-power-inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
    width: 80%;                     /* 内容宽 80%，左右各留 10% */
    margin: 0 auto;
    background: #c2c2c2;            /* 仅内容区域有灰底 */
    padding: 60px 5%;
}
.brand-power-content {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;   /* 标题置顶、底部块置底，中间留白 */
    padding: 10px 0 20px;
}
.brand-power-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0;
}
.brand-power-bottom {
    color: var(--color-primary);
}
.brand-power-zh {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 500;
}
.brand-power-en {
    font-size: 13px;
    line-height: 1.8;
    opacity: .8;
    margin-bottom: 28px;
    letter-spacing: .5px;
}
.brand-power-en strong {
    font-weight: 700;
    background: linear-gradient(transparent 65%, rgba(120,180,230,.45) 65%);
    padding: 0 2px;
}
.btn-brand-power {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}
.btn-brand-power:hover {
    background: var(--color-primary);
    color: #fff;
}
.brand-power-image {
    flex: 1;
    position: relative;
    min-height: 380px;
    border-radius: 6px;
    overflow: hidden;
}
.brand-power-image img,
.brand-power-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.brand-power-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.brand-power-play:hover { background: rgba(255,255,255,.85); }
.brand-power-play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}

/* ===== 6. 新品网格 ===== */
.home-new-products {
    background: var(--color-bg);
    padding: 60px 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.product-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.product-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.product-card .product-image {
    flex: 0 0 45%;
    overflow: hidden;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .product-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-card .product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}
.product-card .product-desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.product-card .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-card .price-now {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-price);
}
.product-card .btn-buy {
    background: var(--color-primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: var(--transition);
}
.product-card .btn-buy:hover { background: var(--color-primary-light); }

/* ===== 7. 地图信息区 ===== */
.home-map {
    background: #fff;
    padding: 60px 0;
}
.map-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
.map-container {
    flex: 0 0 55%;
    min-height: 440px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}
/* 地图 SVG 样式 */
#china-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.province {
    fill: #3b6cb7;
    stroke: #fff;
    stroke-width: 1.5;
    fill-rule: evenodd;
    cursor: pointer;
    transition: fill .3s ease, transform .2s ease;
}
.province:hover {
    fill: #2a4f8a;
}
.province.active {
    fill: #e8627e;
}
.province-label {
    font-size: 20px;
    fill: #fff;
    pointer-events: none;
    text-anchor: middle;
    dominant-baseline: middle;
    font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
}

/* 右侧信息区 */
.map-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---- 圆形饼图比例区 ---- */
.map-ratio {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ratio-pie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}
/* 左侧：女士比例（红色） */
.ratio-female-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 1;
}
/* 右侧：男士比例（蓝色） */
.ratio-male-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}
.ratio-side-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    white-space: nowrap;
}
.ratio-female-percent {
    font-size: 32px;
    font-weight: 700;
    color: #d94a6a;
    line-height: 1.2;
}
.ratio-male-percent {
    font-size: 32px;
    font-weight: 700;
    color: #3b6cb7;
    line-height: 1.2;
}

/* 中间圆环饼图 */
.ratio-pie-chart {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    position: relative;
}
.ratio-pie-chart svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(-90deg);
}
.pie-bg { fill: none; stroke: #eee; stroke-width: 14; }
.pie-female { fill: none; stroke: #d94a6a; stroke-width: 14; stroke-linecap: round;
    transition: stroke-dasharray .6s ease; }
.pie-male { fill: none; stroke: #3b6cb7; stroke-width: 14; stroke-linecap: round;
    transition: stroke-dasharray .6s ease; }
/* 饼图中心图标 */
.pie-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.pie-center-icon svg {
    width: 30px;
    height: 30px;
}

/* ---- 轮播购买信息区 ---- */
.map-scroll {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    flex: 1;
    min-height: 0;
}
.scroll-wrap {
    height: 100%;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}
.scroll-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: top .5s ease;
}
.scroll-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-border);
    min-height: 64px;
}
.scroll-item:last-child { border-bottom: none; }
/* 轮播项左侧内容 */
.scroll-item-main {
    flex: 1;
    min-width: 0;
}
.scroll-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scroll-item-title .city-name {
    color: #3b6cb7;
}
.scroll-item-detail {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 时间角标 */
.scroll-item-time {
    flex-shrink: 0;
    background: #4a7ef0;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
    line-height: 1.6;
}

/* ===== 响应式：移动端 < 992px ===== */
@media (max-width: 991px) {
    /* Banner */
    .home-banner { height: 480px; }
    .banner-content { max-width: 100%; text-align: center; padding: 30px 0; }
    .banner-title { font-size: 34px; }
    .banner-subtitle { font-size: 14px; margin-left: auto; margin-right: auto; }
    .banner-actions { justify-content: center; }

    /* 品牌标语区 */
    .home-service { padding: 28px 0; }
    .home-service .service-text:nth-child(1) { font-size: 15px; }
    .home-service .service-text:nth-child(2) { font-size: 20px; }
    .home-service .service-text:nth-child(3) { font-size: 11px; }
    .home-service .service-text--desc { font-size: 13px; }
    .home-service .service-year { font-size: 12px; letter-spacing: 1px; }
    .home-service .service-year__dash { margin: 0 10px; }

    /* VIP（标题 + 6 列图标） */
    .home-sensitive { padding: 40px 0 48px; }
    .sensitive-header { margin-bottom: 32px; }
    .sensitive-title { font-size: 22px; gap: 0 14px; }
    .sensitive-title__sep { height: 16px; }
    .sensitive-subtitle { font-size: 11px; letter-spacing: 1.5px; }
    .sensitive-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
    .sensitive-item__icon { width: 56px; height: 56px; margin-bottom: 10px; }
    .sensitive-item__bar { width: 24px; margin-bottom: 8px; }
    .sensitive-item__label { font-size: 13px; }

    /* 产品系列 */
    .home-product { padding: 0 16px; }
    .home-product .container { padding: 0 16px; }
    .home-product-item,
    .home-product-item.home-product-right {
        flex-direction: column;
        height: auto;           /* 解除桌面端固定高度，移动端自适应 */
        min-height: auto;
        padding: 0;
        margin: 24px 0;        /* 移动端用固定像素替代 5% */
    }
    .home-product-image {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
        padding: 0;
    }
    .home-product-image img { max-height: 280px; }
    .home-product-info {
        flex: 0 0 auto;
        width: 100%;
        padding: 32px 20px 40px;
        text-align: center;
        align-items: center;
    }
    .home-product-top {
        align-items: center;
        margin-bottom: 16px;
    }
    .home-product-top-label { font-size: 13px; }
    .home-product-name { font-size: 24px; margin-bottom: 12px; }
    .home-product-keywords { font-size: 13px; margin-bottom: 24px; letter-spacing: 2px; }
    .home-product-bottom { font-size: 12px; margin-top: 16px; }
    .btn-home-product { align-self: center; padding: 10px 28px; font-size: 13px; }
    /* 移动端：第 2、4 项同样居中堆叠 */
    .home-product-item.home-product-right .home-product-info {
        align-items: center;
        text-align: center;
        padding: 32px 20px 40px;
    }
    .home-product-item.home-product-right .home-product-top { align-items: center; }
    .home-product-item.home-product-right .btn-home-product { align-self: center; }
    /* 移动端隐藏浮动产品图，避免堆叠时错位 */
    .home-product-float { display: none; }

    /* 品牌力量 */
    .home-brand-power { padding: 32px 0; }
    .brand-power-inner { flex-direction: column; gap: 24px; width: 100%; padding: 32px 16px; }
    .brand-power-content { flex: 0 0 auto; padding: 0; }
    .brand-power-image { flex: 0 0 auto; width: 100%; min-height: 220px; }
    .brand-power-title { font-size: 28px; letter-spacing: 1px; }
    .brand-power-zh { font-size: 14px; }
    .brand-power-en { font-size: 12px; margin-bottom: 20px; }
    .brand-power-play { width: 48px; height: 48px; }
    .brand-power-play::before { border-width: 8px 0 8px 14px; }

    /* 新品网格 */
    .product-grid { grid-template-columns: 1fr; }
    .product-card .product-image { flex: 0 0 40%; }

    /* 地图区 */
    .map-wrapper { flex-direction: column; }
    .map-container { flex: 0 0 auto; width: 100%; min-height: 300px; }
    .ratio-pie-row { gap: 12px; }
    .ratio-female-percent, .ratio-male-percent { font-size: 24px; }
    .ratio-pie-chart { width: 80px; height: 80px; }
    .pie-center-icon { width: 38px; height: 38px; }
    .pie-center-icon svg { width: 22px; height: 22px; }
    .scroll-wrap { min-height: 160px; }
}
