.main { margin: 54px auto 0 auto; }
@media only screen and (max-width: 1200px) { .main { margin: 49px auto 0 auto; } }
@media only screen and (max-width: 600px) { .main { margin: 46px auto 0 auto; } .main__hero { min-height: 160px; } }

/* ====== TRAINING NOT FOUND (tnf__) ====== */

.tnf {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 0, 0, 0.06) 0%, transparent 100%),
        radial-gradient(ellipse 60% 40% at 90% 100%, rgba(128, 0, 0, 0.05) 0%, transparent 100%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(128, 0, 0, 0.02) 0%, transparent 100%),
        linear-gradient(180deg, #f9f6f6 0%, #ffffff 40%, #f7f3f4 70%, #ffffff 100%);
}
.tnf::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/search.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.tnf::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #800000 50%, transparent 90%);
    opacity: 0.3;
    pointer-events: none;
}

/* ====== HERO SECTION ====== */
.tnf__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
    z-index: 1;
}
.tnf__icon {
    font-size: 64px;
    color: #800000;
    opacity: 0.3;
    margin-bottom: 20px;
}
.tnf__title {
    color: #800000;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.tnf__text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 0 32px 0;
}
.tnf__text strong {
    color: #333;
}

/* ====== NAVIGATION LINKS ====== */
.tnf__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.tnf__link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.tnf__link:active {
    transform: scale(0.97);
}
.tnf__link--primary {
    background: #800000;
    color: #fff;
}
.tnf__link--primary:hover {
    background: #660000;
}
.tnf__link--secondary {
    background: #fff;
    color: #800000;
    border: 2px solid #800000;
}
.tnf__link--secondary:hover {
    background: #f9ecec;
}

/* ====== SUGGESTIONS SECTION ====== */
.tnf__suggestions {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 1;
}
.tnf__suggestionsTitle {
    color: #800000;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 10px 0;
}
.tnf__suggestionsSubtitle {
    color: #656263;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 30px 0;
}
.tnf__suggestionsSubtitle strong {
    color: #800000;
    font-weight: 800;
    font-size: 22px;
}

/* ====== RESPONSIVE ====== */
@media only screen and (max-width: 600px) {
    .tnf__hero {
        padding: 50px 15px 30px;
    }
    .tnf__icon {
        font-size: 48px;
    }
    .tnf__title {
        font-size: 26px;
    }
    .tnf__text {
        font-size: 0.95rem;
    }
    .tnf__links {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .tnf__link {
        width: 100%;
        text-align: center;
    }
    .tnf__suggestionsTitle {
        font-size: 22px;
    }
    .tnf__suggestionsSubtitle {
        font-size: 16px;
    }
    .tnf__suggestions {
        padding: 0 15px 50px;
    }
}
