/* ============================================
   CATEGORY: Sante Bien-etre
   Niche: Sante / Bien-etre & Optique
   Palette: #312e81 (indigo deep), #a5b4fc (lavender), #34d399 (emerald)
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

img, video, iframe, svg, canvas {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HERO CATEGORIE
   ============================================ */

.cat-hero {
    background-color: #312e81;
    color: #fff;
    padding: 64px 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.cat-hero__inner {
    flex: 1 1 auto;
    min-width: 0;
}

.cat-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #4338ca;
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cat-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.cat-hero__subtitle {
    font-size: 17px;
    color: #c7d2fe;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 0 28px;
}

.cat-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-hero__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #34d399;
    color: #064e3b;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

.cat-hero__tag {
    background-color: #4338ca;
    color: #e0e7ff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid #6366f1;
}

.cat-hero__visual {
    flex: 0 0 auto;
    width: 340px;
    max-width: 340px;
}

.cat-hero__visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #4338ca;
    display: block;
}

/* ============================================
   DISCLAIMER BLOG
   ============================================ */

.blog-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    color: #78350f;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 24px auto 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.blog-disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #f59e0b;
}

.blog-disclaimer p {
    margin: 0;
}

/* ============================================
   SECTION ARTICLES
   ============================================ */

.cat-articles {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.cat-articles__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.cat-articles__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #312e81;
    margin: 0;
}

.cat-articles__title svg {
    stroke: #312e81;
}

.cat-articles__total {
    background-color: #eef2ff;
    color: #312e81;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

/* ============================================
   MASONRY GRID
   ============================================ */

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

.masonry-card--featured {
    grid-column: span 2;
}

.masonry-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e7ff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    min-width: 0;
}

.masonry-card:hover {
    box-shadow: 0 8px 32px rgba(49, 46, 129, 0.13);
    transform: translateY(-3px);
}

.masonry-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.masonry-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.masonry-card--featured .masonry-card__img {
    height: 280px;
}

.masonry-card__category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #312e81;
    color: #a5b4fc;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.04em;
}

.masonry-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.masonry-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6366f1;
    font-size: 12px;
    font-weight: 500;
}

.masonry-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.4;
    margin: 0;
}

.masonry-card--featured .masonry-card__title {
    font-size: 21px;
}

.masonry-card__title a {
    color: #1e1b4b;
    text-decoration: none;
}

.masonry-card__title a:hover,
.masonry-card__title a:focus {
    color: #312e81;
    text-decoration: underline;
}

.masonry-card__title a:focus {
    outline: 3px solid #a5b4fc;
    outline-offset: 2px;
    border-radius: 2px;
}

.masonry-card__desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.masonry-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f9;
}

.masonry-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #34d399;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.masonry-card__read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9ca3af;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.cat-empty {
    text-align: center;
    padding: 64px 24px;
    background-color: #f5f3ff;
    border-radius: 16px;
    border: 2px dashed #c7d2fe;
}

.cat-empty__icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-empty__title {
    font-size: 20px;
    font-weight: 700;
    color: #312e81;
    margin: 0 0 10px;
}

.cat-empty__text {
    font-size: 15px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================
   SECTION TABLEAU COMPARATIF
   ============================================ */

.cat-table-section {
    background-color: #f5f3ff;
    padding: 64px 24px;
    margin-top: 56px;
}

.cat-table-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-table-section__header {
    margin-bottom: 36px;
}

.cat-table-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #312e81;
    margin: 0 0 12px;
}

.cat-table-section__title svg {
    stroke: #312e81;
    flex-shrink: 0;
}

.cat-table-section__subtitle {
    font-size: 15px;
    color: #6366f1;
    margin: 0;
    line-height: 1.6;
}

/* Wrapper responsive tables */
.table-responsive-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
}

.cat-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 14px;
    color: #374151;
}

.cat-table thead {
    background-color: #312e81;
    color: #fff;
}

.cat-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.cat-table tbody tr {
    border-bottom: 1px solid #f0f0f9;
    transition: background-color 0.15s ease;
}

.cat-table tbody tr:last-child {
    border-bottom: none;
}

.cat-table tbody tr:hover {
    background-color: #eef2ff;
}

.cat-table tbody td {
    padding: 14px 18px;
    vertical-align: middle;
    line-height: 1.5;
}

.cat-table__pro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1e1b4b;
    white-space: nowrap;
}

.cat-table__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.cat-table__dot--indigo { background-color: #6366f1; }
.cat-table__dot--violet { background-color: #8b5cf6; }
.cat-table__dot--green  { background-color: #34d399; }
.cat-table__dot--sky    { background-color: #38bdf8; }

.cat-table__yes {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #059669;
    font-weight: 500;
}

.cat-table__partial {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #d97706;
    font-weight: 500;
}

.cat-table__no {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #dc2626;
    font-weight: 500;
}

.cat-table--compact thead th,
.cat-table--compact tbody td {
    padding: 11px 14px;
    font-size: 13px;
}

.cat-table__disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
}

/* ============================================
   SECTION SLIDER CONSEILS
   ============================================ */

.cat-slider-section {
    background-color: #fff;
    padding: 64px 24px;
    margin-top: 0;
}

.cat-slider-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-slider-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #312e81;
    margin: 0 0 8px;
}

.cat-slider-section__title svg {
    stroke: #312e81;
    flex-shrink: 0;
}

.cat-slider-section__sub {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 32px;
}

/* Slider container */
.tip-slider {
    overflow: hidden;
    border-radius: 16px;
}

.tip-slider__track {
    display: flex;
    gap: 0;
    transition: transform 0.35s ease;
    will-change: transform;
}

.tip-card {
    min-width: 100%;
    background-color: #f5f3ff;
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e0e7ff;
    min-height: 260px;
}

.tip-card__icon {
    flex-shrink: 0;
}

.tip-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
}

.tip-card__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

.tip-card__source {
    font-size: 12px;
    color: #6366f1;
    background-color: #eef2ff;
    padding: 4px 12px;
    border-radius: 100px;
    font-style: italic;
}

.tip-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.tip-slider__btn {
    background-color: #312e81;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}

.tip-slider__btn:hover {
    background-color: #4338ca;
}

.tip-slider__btn:focus {
    outline: 3px solid #a5b4fc;
    outline-offset: 2px;
}

.tip-slider__btn:disabled {
    background-color: #c7d2fe;
    cursor: not-allowed;
}

.tip-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #c7d2fe;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.15s ease, width 0.15s ease;
}

.tip-slider__dot--active {
    background-color: #312e81;
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   SECTION BLOCS COMPARATIFS MUTUELLES
   ============================================ */

.cat-calc-section {
    background-color: #eef2ff;
    padding: 64px 24px;
    margin-top: 0;
}

.cat-calc-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-calc-section__header {
    margin-bottom: 36px;
}

.cat-calc-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #312e81;
    margin: 0 0 10px;
}

.cat-calc-section__title svg {
    stroke: #312e81;
    flex-shrink: 0;
}

.cat-calc-section__subtitle {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.calc-block {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #c7d2fe;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.calc-block--alt {
    border-color: #a5b4fc;
    background-color: #f9f8ff;
}

.calc-block__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-block__header svg {
    stroke: #312e81;
    flex-shrink: 0;
}

.calc-block__title {
    font-size: 18px;
    font-weight: 700;
    color: #312e81;
}

.calc-block__desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

.calc-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-block__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.calc-block__list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.calc-ref-table {
    margin-top: 12px;
}

.calc-ref-table__title {
    font-size: 17px;
    font-weight: 700;
    color: #312e81;
    margin: 0 0 16px;
}

/* ============================================
   SECTION STATS
   ============================================ */

.cat-stats-section {
    background-color: #312e81;
    padding: 64px 24px;
    margin-top: 0;
}

.cat-stats-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-stats-section__title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    text-align: center;
}

.cat-stats-section__sub {
    font-size: 15px;
    color: #c7d2fe;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #4338ca;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #6366f1;
    min-width: 0;
}

.stat-card__number {
    font-size: 36px;
    font-weight: 800;
    color: #34d399;
    line-height: 1.1;
    margin-bottom: 10px;
}

.stat-card__label {
    font-size: 13px;
    color: #c7d2fe;
    line-height: 1.5;
    margin-bottom: 10px;
}

.stat-card__source {
    font-size: 11px;
    color: #818cf8;
    font-style: italic;
}

.cat-stats__disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #818cf8;
    text-align: center;
    justify-content: center;
    margin-top: 24px;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
    .cat-hero {
        padding: 48px 20px 36px;
        gap: 28px;
    }

    .cat-hero__visual {
        width: 260px;
        max-width: 260px;
    }

    .cat-hero__visual img {
        height: 200px;
    }

    .cat-hero__title {
        font-size: 34px;
    }

    .cat-hero__subtitle {
        font-size: 15px;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .masonry-card--featured {
        grid-column: span 2;
    }

    .masonry-card--featured .masonry-card__img {
        height: 240px;
    }

    .calc-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cat-table-section {
        padding: 48px 20px;
    }

    .cat-slider-section {
        padding: 48px 20px;
    }

    .cat-calc-section {
        padding: 48px 20px;
    }

    .cat-stats-section {
        padding: 48px 20px;
    }

    .cat-table-section__title {
        font-size: 22px;
    }

    .cat-slider-section__title {
        font-size: 22px;
    }

    .cat-calc-section__title {
        font-size: 22px;
    }

    .cat-stats-section__title {
        font-size: 22px;
    }

    .tip-card {
        padding: 28px 32px;
    }

    .stat-card__number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .cat-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 16px 28px;
        gap: 24px;
        border-radius: 0 0 16px 16px;
    }

    .cat-hero__visual {
        width: 100%;
        max-width: 100%;
    }

    .cat-hero__visual img {
        height: 200px;
        width: 100%;
    }

    .cat-hero__title {
        font-size: 26px;
        letter-spacing: -0.01em;
    }

    .cat-hero__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cat-hero__badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .cat-hero__meta {
        gap: 8px;
    }

    .cat-hero__count {
        font-size: 12px;
        padding: 5px 12px;
    }

    .cat-hero__tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .blog-disclaimer {
        padding: 12px 16px;
        font-size: 13px;
        margin: 16px auto 0;
    }

    .cat-articles {
        margin-top: 28px;
        padding: 0 16px;
    }

    .cat-articles__header {
        margin-bottom: 20px;
        gap: 10px;
    }

    .cat-articles__title {
        font-size: 20px;
    }

    .cat-articles__total {
        font-size: 12px;
        padding: 4px 12px;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .masonry-card--featured {
        grid-column: span 1;
    }

    .masonry-card--featured .masonry-card__img {
        height: 200px;
    }

    .masonry-card__img {
        height: 180px;
    }

    .masonry-card--featured .masonry-card__title {
        font-size: 18px;
    }

    .masonry-card__title {
        font-size: 16px;
    }

    .masonry-card__body {
        padding: 16px 16px 18px;
        gap: 8px;
    }

    .cat-empty {
        padding: 40px 16px;
    }

    .cat-empty__title {
        font-size: 18px;
    }

    .cat-empty__text {
        font-size: 14px;
    }

    .cat-table-section {
        padding: 40px 16px;
        margin-top: 40px;
    }

    .cat-table-section__title {
        font-size: 20px;
    }

    .cat-table-section__subtitle {
        font-size: 14px;
    }

    .cat-table thead th {
        padding: 12px 12px;
        font-size: 12px;
    }

    .cat-table tbody td {
        padding: 12px 12px;
        font-size: 13px;
    }

    .cat-table--compact thead th,
    .cat-table--compact tbody td {
        padding: 9px 10px;
        font-size: 12px;
    }

    .cat-table__pro {
        white-space: normal;
        font-size: 13px;
    }

    .cat-slider-section {
        padding: 40px 16px;
    }

    .cat-slider-section__title {
        font-size: 20px;
    }

    .cat-slider-section__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .tip-card {
        padding: 24px 20px;
        min-height: 200px;
        gap: 12px;
    }

    .tip-card__title {
        font-size: 17px;
    }

    .tip-card__text {
        font-size: 14px;
    }

    .tip-slider__btn {
        width: 36px;
        height: 36px;
    }

    .cat-calc-section {
        padding: 40px 16px;
    }

    .cat-calc-section__title {
        font-size: 20px;
    }

    .cat-calc-section__subtitle {
        font-size: 14px;
    }

    .calc-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
    }

    .calc-block {
        padding: 20px;
    }

    .calc-block__title {
        font-size: 16px;
    }

    .calc-block__desc {
        font-size: 13px;
    }

    .calc-block__list li {
        font-size: 13px;
    }

    .calc-ref-table__title {
        font-size: 15px;
    }

    .cat-stats-section {
        padding: 40px 16px;
    }

    .cat-stats-section__title {
        font-size: 20px;
    }

    .cat-stats-section__sub {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 14px;
        border-radius: 12px;
    }

    .stat-card__number {
        font-size: 26px;
    }

    .stat-card__label {
        font-size: 12px;
    }

    .stat-card__source {
        font-size: 10px;
    }

    .cat-stats__disclaimer {
        font-size: 11px;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cat-hero {
        padding: 24px 12px 20px;
        gap: 18px;
        border-radius: 0 0 12px 12px;
    }

    .cat-hero__title {
        font-size: 22px;
    }

    .cat-hero__subtitle {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .cat-hero__badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .cat-hero__count {
        font-size: 11px;
        padding: 4px 10px;
    }

    .cat-hero__tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .cat-hero__visual img {
        height: 160px;
        border-radius: 12px;
    }

    .blog-disclaimer {
        padding: 10px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .cat-articles {
        padding: 0 12px;
        margin-top: 20px;
    }

    .cat-articles__header {
        margin-bottom: 16px;
    }

    .cat-articles__title {
        font-size: 17px;
        gap: 8px;
    }

    .cat-articles__total {
        font-size: 11px;
        padding: 3px 10px;
    }

    .masonry-grid {
        gap: 12px;
    }

    .masonry-card__img {
        height: 160px;
    }

    .masonry-card--featured .masonry-card__img {
        height: 160px;
    }

    .masonry-card__body {
        padding: 12px 14px 14px;
        gap: 7px;
    }

    .masonry-card__title {
        font-size: 15px;
    }

    .masonry-card--featured .masonry-card__title {
        font-size: 16px;
    }

    .masonry-card__desc {
        font-size: 13px;
    }

    .masonry-card__footer {
        padding-top: 10px;
    }

    .cat-empty {
        padding: 28px 12px;
        border-radius: 12px;
    }

    .cat-empty__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .cat-empty__title {
        font-size: 16px;
    }

    .cat-empty__text {
        font-size: 13px;
    }

    .cat-table-section {
        padding: 28px 12px;
        margin-top: 28px;
    }

    .cat-table-section__title {
        font-size: 17px;
        gap: 8px;
    }

    .cat-table-section__subtitle {
        font-size: 13px;
    }

    .cat-table thead th {
        padding: 10px 10px;
        font-size: 11px;
    }

    .cat-table tbody td {
        padding: 10px 10px;
        font-size: 12px;
    }

    .cat-table--compact thead th,
    .cat-table--compact tbody td {
        padding: 8px 8px;
        font-size: 11px;
    }

    .cat-table__pro {
        font-size: 12px;
        gap: 6px;
    }

    .cat-table__yes,
    .cat-table__partial,
    .cat-table__no {
        font-size: 12px;
        gap: 4px;
    }

    .cat-table__disclaimer {
        font-size: 11px;
        gap: 4px;
        margin-top: 10px;
    }

    .cat-slider-section {
        padding: 28px 12px;
    }

    .cat-slider-section__title {
        font-size: 17px;
        gap: 8px;
    }

    .cat-slider-section__sub {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .tip-card {
        padding: 18px 16px;
        min-height: 180px;
        gap: 10px;
        border-radius: 12px;
    }

    .tip-card__title {
        font-size: 15px;
    }

    .tip-card__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .tip-card__source {
        font-size: 11px;
        padding: 3px 10px;
    }

    .tip-slider__btn {
        width: 32px;
        height: 32px;
    }

    .tip-slider__nav {
        gap: 12px;
        margin-top: 14px;
    }

    .tip-slider__dot {
        width: 7px;
        height: 7px;
    }

    .tip-slider__dot--active {
        width: 20px;
    }

    .cat-calc-section {
        padding: 28px 12px;
    }

    .cat-calc-section__title {
        font-size: 17px;
        gap: 8px;
    }

    .cat-calc-section__subtitle {
        font-size: 13px;
    }

    .calc-container {
        gap: 14px;
        margin-bottom: 20px;
    }

    .calc-block {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .calc-block__header {
        gap: 8px;
    }

    .calc-block__title {
        font-size: 15px;
    }

    .calc-block__desc {
        font-size: 13px;
    }

    .calc-block__list {
        gap: 8px;
    }

    .calc-block__list li {
        font-size: 13px;
        gap: 6px;
    }

    .calc-ref-table__title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .cat-stats-section {
        padding: 28px 12px;
    }

    .cat-stats-section__title {
        font-size: 17px;
    }

    .cat-stats-section__sub {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 10px;
        border-radius: 10px;
    }

    .stat-card__number {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .stat-card__label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .stat-card__source {
        font-size: 10px;
    }

    .cat-stats__disclaimer {
        font-size: 11px;
        margin-top: 16px;
    }
}