.notation-page .hero {
    min-height: auto;
    padding-top: 7.5rem;
}

.notation-page .notation-hero .hero-content {
    max-width: 840px;
}

.hero-content p {
    color: var(--muted);
}

.notation-body {
    padding-top: 1rem;
}

.notation-grid {
    display: grid;
    gap: 1.1rem;
}

.notation-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 249, 255, 0.86));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.notation-card h3 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.notation-card p {
    margin: 0;
    color: var(--muted);
}

.notation-card a {
    color: #1a6ea8;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.coming-soon {
    color: #1d5d92;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0.03em;
}

.notation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.9rem;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 12px;
    overflow: hidden;
}

.notation-table th,
.notation-table td {
    border-bottom: 1px solid rgba(96, 142, 193, 0.24);
    text-align: left;
    padding: 0.72rem 0.7rem;
    color: var(--muted);
    vertical-align: top;
}

.notation-table th {
    width: 34%;
    color: #194d79;
    font-weight: 700;
    background: rgba(237, 246, 255, 0.8);
}

.notation-table tr:last-child th,
.notation-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 900px) {
    .notation-page {
        padding-top: 5rem;
    }

    .notation-table th,
    .notation-table td {
        display: block;
        width: 100%;
    }

    .notation-table th {
        border-bottom: none;
    }

    .notation-table td {
        padding-top: 0;
    }
}