﻿/* type-cluster.css — premium cluster layout */

.tcluster {
    max-width: 1120px;
    margin: 18px auto 72px;
    padding: 0 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
}

    /* breadcrumb */
    .tcluster .bc {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        font-size: 13px;
        color: var(--text-muted);
        margin: 8px 0 14px;
    }

        .tcluster .bc a {
            color: var(--text-muted);
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }

            .tcluster .bc a:hover {
                border-bottom-color: var(--text-muted);
            }

        .tcluster .bc span {
            opacity: .7;
        }

    /* hero */
    .tcluster .hero {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 18px 16px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 18px;
    }

        .tcluster .hero .kicker {
            font-size: 12px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #64748b;
            margin-bottom: 10px;
        }

        .tcluster .hero h1 {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 400;
            margin: 0 0 10px;
        }

        .tcluster .hero .lead {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-body);
            margin: 0 0 14px;
        }

    .tcluster .backPillar a {
        display: inline-block;
        font-size: 14px;
        color: var(--accent);
        text-decoration: none;
        border-bottom: 1px solid var(--accent);
        padding-bottom: 2px;
    }

    /* content cards */
    .tcluster .content {
        display: grid;
        gap: 14px;
    }

        .tcluster .content .sect {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
        }

            .tcluster .content .sect h2 {
                font-family: var(--font-serif);
                font-size: 18px;
                margin: 0 0 10px;
            }

    /* typography */
    .tcluster .prose {
        margin: 0;
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-body);
        white-space: pre-line; /* 👈 sənin \n-lər üçün əsas fix */
    }

        .tcluster .prose strong {
            color: var(--text-main);
        }

    /* FAQ */
    .tcluster .faq {
        border-top: 1px solid var(--border);
        padding: 10px 0;
    }

        .tcluster .faq summary {
            cursor: pointer;
            font-weight: 650;
        }

        .tcluster .faq .ans {
            margin-top: 8px;
        }

            .tcluster .faq .ans p {
                margin: 0;
                white-space: pre-line;
                color: var(--text-body);
                line-height: 1.8;
            }

/* wider screens */
@media (min-width:768px) {
    .tcluster {
        padding: 0 24px;
        margin-top: 22px;
    }

        .tcluster .hero {
            padding: 22px 20px;
        }

            .tcluster .hero h1 {
                font-size: 34px;
            }

        .tcluster .content .sect {
            padding: 20px 18px;
        }

        .tcluster .prose {
            font-size: 15px;
        }
}


.tcluster .content p {
    white-space: pre-line;
}



.tcluster {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 18px
}

    .tcluster .bc {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: #7b8496;
        font-size: 14px;
        margin-bottom: 16px
    }

        .tcluster .bc a {
            color: inherit;
            text-decoration: none
        }

    .tcluster .hero {
        padding: 18px 18px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;
        background: rgba(255,255,255,.03);
        box-shadow: 0 10px 30px rgba(0,0,0,.25)
    }

    .tcluster .kicker {
        color: #9aa3b2;
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase
    }

    .tcluster h1 {
        margin: 8px 0 10px;
        font-size: 34px;
        line-height: 1.15
    }

    .tcluster .lead {
        color: #b7c0cf;
        font-size: 16px;
        line-height: 1.65;
        margin: 0
    }

    .tcluster .backPillar {
        margin-top: 14px
    }

        .tcluster .backPillar a {
            text-decoration: none
        }

    .tcluster .content {
        margin-top: 18px;
        display: grid;
        gap: 14px
    }

    .tcluster .sect {
        padding: 16px 16px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        background: rgba(0,0,0,.15)
    }

        .tcluster .sect h2 {
            margin: 0 0 10px;
            font-size: 18px
        }

        .tcluster .sect p {
            margin: 0;
            color: #c8d1df;
            line-height: 1.75;
            white-space: pre-line
        }

    .tcluster details.faq {

        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: 10px
    }

        .tcluster details.faq summary {
            cursor: pointer;
            color: #000001;
            font-weight: 600
        }

        .tcluster details.faq .ans {
            margin-top: 8px;
            color: #c8d1df;
            line-height: 1.7
        }
