/* ================================================================
   Blog Styles — Valoracion Mallorca
   Matches the main site design: sand/navy/terracotta palette
   ================================================================ */

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

:root {
    --white: #ffffff;
    --sand: #f5f0e8;
    --sand-light: #faf8f4;
    --navy: #1a2744;
    --navy-light: #2a3a5c;
    --terracotta: #c17f59;
    --terracotta-dark: #a86b48;
    --terracotta-light: #d4956e;
    --text-primary: #1a2744;
    --text-secondary: #5a6578;
    --text-light: #8a94a6;
    --border: #e2ddd5;
    --success: #2d8a56;
    --success-light: #e8f5ef;
    --warning: #d4a017;
    --warning-light: #fef9e7;
    --error: #c0392b;
    --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 39, 68, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--terracotta-dark);
}

/* ---- Header ---- */

.blog-header {
    background: var(--navy);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-logo span {
    color: var(--terracotta-light);
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--white);
}

/* ---- Blog Hero ---- */

.blog-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 60px 0 48px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.blog-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Category Tabs ---- */

.category-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow-x: auto;
}

.category-bar .container {
    display: flex;
    gap: 4px;
    padding-top: 0;
    padding-bottom: 0;
}

.cat-tab {
    display: inline-block;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.cat-tab:hover {
    color: var(--text-primary);
    border-bottom-color: var(--border);
}

.cat-tab.active {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
}

/* ---- Blog Grid ---- */

.blog-main {
    padding: 48px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card a {
    display: block;
    color: inherit;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.blog-category {
    background: var(--sand);
    color: var(--terracotta);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.zone-badge {
    background: var(--navy);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
}

.blog-card-meta time {
    color: var(--text-light);
}

.blog-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Pagination ---- */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.page-link:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.page-link.active {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

/* ---- Breadcrumb ---- */

.breadcrumb {
    padding: 14px 0;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--terracotta);
}

.breadcrumb .separator {
    color: var(--text-light);
    margin: 0 2px;
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ---- Article Page ---- */

.article-main {
    padding: 48px 0 80px;
}

.article {
    max-width: 780px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 36px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.article-category-link {
    background: var(--sand);
    color: var(--terracotta);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-meta time {
    color: var(--text-light);
    font-size: 0.85rem;
}

.article-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--navy);
}

/* ---- Article Body ---- */

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--navy);
}

.article-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 8px;
}

.article-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.article-body strong {
    color: var(--text-primary);
}

.article-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary) !important;
    padding: 20px 24px;
    background: var(--sand);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--terracotta);
    margin-bottom: 32px !important;
}

/* ---- Metrics Grid ---- */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}

.metric-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- Tables ---- */

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.ranking-table thead {
    background: var(--navy);
    color: var(--white);
}

.ranking-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ranking-table th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.ranking-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.ranking-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.ranking-table tbody tr:hover {
    background: var(--sand-light);
}

.ranking-table .positive {
    color: var(--success);
    font-weight: 600;
}

.ranking-table .negative {
    color: var(--error);
    font-weight: 600;
}

/* ---- Distribution Bars ---- */

.distribution-bars {
    margin: 16px 0 24px;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.dist-label {
    min-width: 110px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: right;
    color: var(--text-secondary);
}

.dist-bar-container {
    flex: 1;
    height: 24px;
    background: var(--sand);
    border-radius: 4px;
    overflow: hidden;
}

.dist-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    border-radius: 4px;
    min-width: 4px;
    transition: width 0.6s ease;
}

.dist-count {
    min-width: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ---- Stats List ---- */

.stats-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.stats-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats-list li:last-child {
    border-bottom: none;
}

/* ---- Timeline List ---- */

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    counter-reset: timeline;
}

.timeline-list li {
    position: relative;
    padding: 12px 0 12px 48px;
    border-left: 2px solid var(--border);
    margin-left: 16px;
    counter-increment: timeline;
    color: var(--text-secondary);
}

.timeline-list li::before {
    content: counter(timeline);
    position: absolute;
    left: -14px;
    top: 10px;
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Zone Ranking ---- */

.zone-ranking {
    margin: 16px 0 24px;
}

.zone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: box-shadow 0.2s;
}

.zone-card:hover {
    box-shadow: var(--shadow-sm);
}

.zone-rank {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zone-info {
    flex: 1;
}

.zone-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.zone-info h3 a {
    color: var(--navy);
}

.zone-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ---- Comparison Columns ---- */

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 16px 0 24px;
}

.comparison-col {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.comparison-col h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.comparison-col ol {
    padding-left: 20px;
}

.comparison-col li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ---- Advice / Warning / Example Boxes ---- */

.advice-box,
.warning-box,
.example-box,
.summary-box {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 16px 0 24px;
}

.advice-box {
    background: var(--sand);
    border-left: 4px solid var(--terracotta);
}

.advice-box h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--terracotta-dark);
}

.warning-box {
    background: var(--warning-light);
    border-left: 4px solid var(--warning);
}

.example-box {
    background: var(--success-light);
    border-left: 4px solid var(--success);
}

.example-box h4 {
    color: var(--success);
    margin-bottom: 8px;
}

.summary-box {
    background: var(--navy);
    color: var(--white);
}

.summary-box p {
    color: rgba(255,255,255,0.85) !important;
}

.summary-box strong {
    color: var(--white) !important;
}

.summary-box ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.summary-box li {
    padding: 4px 0;
    color: rgba(255,255,255,0.85);
}

/* ---- Price Chart (CSS-only) ---- */

.price-chart {
    margin: 16px 0 24px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 220px;
    padding-bottom: 24px;
}

.chart-bar-group {
    flex: 1;
    min-width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.chart-value {
    font-size: 0.6rem;
    color: var(--text-light);
    margin-bottom: 4px;
    white-space: nowrap;
    transform: rotate(-45deg);
    transform-origin: bottom center;
}

.chart-bar {
    width: 100%;
    max-width: 32px;
    background: linear-gradient(180deg, var(--terracotta), var(--terracotta-dark));
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
    min-height: 4px;
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

/* ---- CTA Box ---- */

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 32px 0;
}

.cta-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white) !important;
}

.cta-box p {
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    color: var(--white) !important;
}

/* ---- Mortgage Broker CTA ---- */

.mortgage-cta {
    max-width: 780px;
    margin: 40px auto 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--sand);
    border: 1px solid var(--border);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.mortgage-cta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.mortgage-cta-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.mortgage-cta-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.mortgage-cta-content p strong {
    color: var(--text-primary);
}

.mortgage-cta-button {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.mortgage-cta-button:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .mortgage-cta {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .mortgage-cta-icon {
        width: 40px;
        height: 40px;
    }

    .mortgage-cta-icon svg {
        width: 22px;
        height: 22px;
    }

    .mortgage-cta-content h3 {
        font-size: 1.05rem;
    }

    .mortgage-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ---- Blog CTA Section ---- */

.blog-cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}

.blog-cta-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.cta-button-large:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.cta-button-outline {
    display: inline-block;
    border: 2px solid var(--terracotta);
    color: var(--terracotta) !important;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    margin-left: 12px;
}

.cta-button-outline:hover {
    background: var(--terracotta);
    color: var(--white) !important;
}

/* ---- Sticky CTA (mobile) ---- */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
    z-index: 99;
}

.sticky-cta-button {
    display: block;
    background: var(--terracotta);
    color: var(--white) !important;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
}

/* ---- Article Tags ---- */

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tag {
    background: var(--sand);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---- Related Articles ---- */

.related-articles {
    max-width: 780px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.related-articles h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.related-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: box-shadow 0.2s;
    color: inherit;
}

.related-card:hover {
    box-shadow: var(--shadow-md);
}

.related-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--terracotta);
    letter-spacing: 0.04em;
}

.related-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
    color: var(--navy);
}

.related-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---- Error Page ---- */

.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-page h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ---- Footer ---- */

.blog-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    font-size: 0.8rem;
    text-align: center;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-columns {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: block;
    }

    .article-main {
        padding-bottom: 120px;
    }

    .chart-bars {
        height: 160px;
    }

    .chart-value {
        display: none;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-outline {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .zone-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .zone-stats {
        gap: 8px;
    }
}
