/* ===========================
   JOGI OLDALAK KÖZÖS STÍLUS
   =========================== */

.legal-hero {
    background: linear-gradient(135deg, #0d3b6e, #1a6b9a);
    padding: 120px 20px 60px;
    color: white;
    text-align: center;
}

.legal-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.legal-hero p {
    opacity: 0.85;
    font-size: 1rem;
}

.legal-content {
    padding: 60px 20px 80px;
    background: #f8fafc;
}

.legal-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Tartalomjegyzék */
.toc-card {
    background: #e8f4fd;
    border-left: 4px solid #1a6b9a;
    border-radius: 12px;
    padding: 28px 32px;
}

.toc-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 14px;
}

.toc-list {
    list-style: decimal;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-list a {
    color: #1a6b9a;
    font-size: 0.92rem;
    text-decoration: none;
    font-weight: 500;
}

.toc-list a:hover {
    text-decoration: underline;
}

/* Szekciók */
.legal-section {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d3b6e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a6b9a;
    margin: 20px 0 12px;
}

.legal-section p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

/* Listák */
.legal-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a6b9a;
    font-weight: 700;
}

/* Táblázatok */
.info-table,
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
    vertical-align: top;
}

.info-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
    white-space: nowrap;
}

.data-table th {
    background: #0d3b6e;
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
}

.data-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
    font-size: 0.88rem;
    vertical-align: top;
}

.data-table tr:nth-child(even) td {
    background: #f8fafc;
}

.data-table a,
.info-table a {
    color: #1a6b9a;
    text-decoration: none;
}

.data-table a:hover,
.info-table a:hover {
    text-decoration: underline;
}

/* Jogok grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.right-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.right-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 8px;
}

.right-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.rights-note {
    background: #fffbeb;
    border: 1px solid #f6e05e;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.88rem;
    color: #744210;
    margin-top: 16px;
}

.rights-note a {
    color: #1a6b9a;
}

/* NAIH kártya */
.authority-card {
    background: #f0f7ff;
    border: 1px solid #bee3f8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
}

.authority-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 12px;
}

.authority-card p {
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.update-note {
    font-size: 0.84rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 16px;
}

/* Reszponzív */
@media (max-width: 600px) {
    .legal-section {
        padding: 24px 18px;
    }

    .info-table td:first-child {
        white-space: normal;
        width: auto;
    }

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

    .data-table {
        display: block;
        overflow-x: auto;
    }
}
