/* ================================================
   Possible Solutions – ÁSZF oldal stílus
   ================================================ */

body.aszf-page {
    background: var(--off-white);
}

/* Navbar override – mindig sötét az ÁSZF-en */
body.aszf-page #mainNav {
    background: var(--ink);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.btn-back-home {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.btn-back-home:hover { color: var(--white); }

/* ── Main wrapper ── */
.aszf-main {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: calc(100vh - 72px);
}

/* ── Header ── */
.aszf-header {
    text-align: center;
    padding: 56px 0 48px;
    border-bottom: 1.5px solid var(--gray-100);
    margin-bottom: 56px;
}

.aszf-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 12px;
}

.aszf-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.aszf-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

.aszf-meta i { color: var(--navy-mid); }

/* ── Body ── */
.aszf-body {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Section ── */
.aszf-section {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: 8px;
    padding: 36px 40px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.aszf-section:hover {
    border-color: #c0cad8;
    box-shadow: 0 8px 28px rgba(7,16,30,0.07);
}

.aszf-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aszf-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--navy);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.aszf-section p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 12px;
}

.aszf-section p:last-child { margin-bottom: 0; }

.aszf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aszf-list li {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.aszf-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy-mid);
    flex-shrink: 0;
}

/* ── Data table ── */
.aszf-data-table {
    border: 1.5px solid var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
}

.adt-row {
    display: flex;
    border-bottom: 1px solid var(--gray-100);
}

.adt-row:last-child { border-bottom: none; }

.adt-label {
    flex: 0 0 180px;
    background: var(--off-white);
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--gray-100);
}

.adt-value {
    flex: 1;
    padding: 11px 16px;
    font-size: 0.88rem;
    color: var(--ink);
}

.aszf-link {
    color: var(--navy-mid);
    text-decoration: none;
    transition: color 0.3s ease;
}

.aszf-link:hover { color: var(--ink); text-decoration: underline; }

/* ÁSZF link aktív állapot – az ászf.php-n */
.footer-aszf-active {
    color: rgba(255,255,255,0.7) !important;
    border-color: rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.06) !important;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 767px) {
    .aszf-section { padding: 24px 20px; }
    .aszf-main { padding-top: 90px; }
    .aszf-header { padding: 36px 0 32px; margin-bottom: 36px; }

    .adt-label { flex: 0 0 120px; }

    .aszf-meta { flex-direction: column; gap: 8px; }
}
