/* =========================================
   NOT FOUND PAGE STYLES (404)
   BEM strict: .academy-not-found__*
   ========================================= */

.academy-not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    /* Account for header/footer */
    background-color: var(--alabaster-white, #F8F9FA);
    padding: 24px;
    animation: fadeIn 0.4s ease-in-out;
}

.academy-not-found__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 48px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.academy-not-found__icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(214, 158, 46, 0.1);
    /* Sunrise Gold 10% */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.academy-not-found__icon {
    font-size: 2.5rem;
    color: var(--sunrise-gold, #D69E2E);
}

.academy-not-found__title {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: var(--harbor-blue, #1A365D);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.academy-not-found__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-gray, #4A5568);
    margin: 0 0 32px 0;
}

.academy-not-found__actions {
    display: flex;
    justify-content: center;
    width: 100%;
}