html,
body {
    margin: 0;
    padding: 0;
}
h1 {
    font-family: "Playfair Display", serif;
}
h2 {
    font-family: "Playfair Display", serif;
}

body {
    overflow-x: hidden;
    background: #fff;
}
.hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../img/bg_20.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(255, 245, 252, 0.10) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(255, 243, 250, 0.08) 100%
    );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 90px;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-gymnast {
    display: block;
    max-width: 230px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(180, 104, 201, 0.16));
}

.hero-right {
    max-width: 620px;
    margin: 0 auto;
}

.hero-title {
    margin: 0 0 22px;
    font-size: 88px;
    line-height: 0.95;
    font-weight: 700;
    color: #7b3fb4;
    letter-spacing: -1px;
}

.hero-subtitle {
    margin: 0 0 34px;
    font-size: 22px;
    line-height: 1.45;
    color: #6a4f76;
}

.hero-buttons {
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 215px;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.hero-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #f06fc8 0%, #c67cff 100%);
    box-shadow: 0 10px 24px rgba(214, 118, 226, 0.28);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.hero-btn-secondary {
    color: #8f58cf;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid #c58dff;
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.42);
    color: #8f58cf;
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-right {
        max-width: 100%;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 19px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-gymnast {
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .hero-gymnast {
        max-width: 230px;
        max-width: 48%;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        font-size: 16px;
        min-height: 52px;
    }
}

.championships {
    position: relative;
    padding: 90px 20px 110px;
    background:
            linear-gradient(180deg, #fffefe 0%, #fdf7ff 55%, #fffefe 100%);
    overflow: hidden;
}

.championships::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background-image: url("../img/championships-bg-decor.png");*/
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.22;
    pointer-events: none;
}

/*.championships-container {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*}*/

.championships-title {
    margin: 0;
    text-align: center;
    font-size: 54px;
    line-height: 1.05;
    color: #5f2f88;
    font-weight: 700;
}

.championships-subtitle {
    margin: 14px 0 42px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #7f6a8d;
}

.championships-slider {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 18px;
}

.championships-arrow {
    width: 56px;
    height: 56px;
    border: none;
    background: transparent;
    color: #f2a6d9;
    font-size: 34px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.championships-arrow:hover {
    transform: scale(1.08);
    opacity: 1;
}

.championships-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.championship-card {
    position: relative;
    min-height: 360px;
    border-radius: 26px;
    overflow: hidden;
    padding: 34px 30px;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    box-shadow: 0 16px 40px rgba(194, 141, 220, 0.16);
}

.championship-card-dark {

    background: linear-gradient(120deg, rgb(198, 124, 255) 0%, rgba(225, 125, 243, 0.53) 45%, rgb(239, 220, 232) 100%);
            url("../img/championship-card-bg-1.png") center/cover no-repeat;
}

.championship-card-light {
    background:
            linear-gradient(135deg, rgba(255, 243, 250, 0.85), rgba(244, 227, 255, 0.86)),
            url("../img/championship-card-bg-2.png") center/cover no-repeat;
}

.championship-card-content {
    position: relative;
    z-index: 2;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.championship-card-title {
    margin: 0 0 8px;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 700;
    color: #5f2f88;
}

.championship-card-light .championship-card-title {
    color: #5f2f88;
}

.championship-card-year {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
}

.championship-card-light .championship-card-year {
    color: #6a3e93;
}

.championship-card-date,
.championship-card-location {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.championship-card-light .championship-card-date,
.championship-card-light .championship-card-location {
    color: #6e5d79;
}

.championship-card-location {
    margin-bottom: 26px;
}

.championship-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 162px;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #5f2f88;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
}

.championship-card-btn:hover {
    transform: translateY(-2px);
}

.championship-card-btn-secondary {
    background: linear-gradient(90deg, #7c45bf 0%, #5e2f95 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(124, 69, 191, 0.25);
}

.championship-card-image {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 70%;
    object-fit: contain;
    pointer-events: none;
}

.championship-card-image-left {
    right: 2px;
    top: 15%;
}

.championship-card-image-right {
    right: 2px;
    top: 15%;
}

@media (max-width: 1100px) {
    .championships-title {
        font-size: 44px;
    }

    .championships-slider {
        grid-template-columns: 1fr;
    }

    .championships-arrow {
        display: none;
    }

    .championships-cards {
        grid-template-columns: 1fr;
    }

    .championship-card {
        min-height: 340px;
    }
}

@media (max-width: 700px) {
    .championships {
        padding: 70px 16px 80px;
    }

    .championships-title {
        font-size: 34px;
    }

    .championships-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .championship-card {
        min-height: 300px;
        padding: 24px 20px;
    }

    .championship-card-content {
        max-width: 60%;
    }

    .championship-card-title {
        font-size: 34px;
    }

    .championship-card-year {
        font-size: 24px;
    }

    .championship-card-date,
    .championship-card-location {
        font-size: 14px;
    }

    .championship-card-btn {
        min-width: 140px;
        height: 42px;
        font-size: 14px;
    }

    .championship-card-image {
        height: 82%;
        opacity: 0.95;
    }
}


.photo-archive {
    position: relative;
    padding: 90px 20px 110px;
    background: linear-gradient(180deg, #fffefe 0%, #fcf6ff 55%, #fffefe 100%);
    overflow: hidden;
}

.photo-archive-title {
    margin: 0 0 26px;
    text-align: center;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    color: #5f2f88;
}

.photo-archive-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.photo-filter-btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid #eadcf2;
    background: rgba(255, 255, 255, 0.72);
    color: #7a6488;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 6px 18px rgba(201, 174, 219, 0.08);
}

.photo-filter-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #dcbef0;
    color: #60348d;
}

.photo-filter-btn.active {
    background: #fff7fb;
    border-color: #efcfdf;
    color: #60348d;
    box-shadow: 0 8px 18px rgba(230, 184, 213, 0.18);
}

/* ИДЕАЛЬНАЯ МОЗАИКА */

.photo-archive-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 90px);
    gap: 22px;
}

/* базовая карточка */

.photo-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #f6edf9;
    box-shadow: 0 14px 34px rgba(191, 153, 215, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(191, 153, 215, 0.2);
}

.photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* раскладка без дырок */

.card-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.card-2 {
    grid-column: 5 / 8;
    grid-row: 1 / 5;
}

.card-3 {
    grid-column: 8 / 11;
    grid-row: 1 / 3;
}

.card-4 {
    grid-column: 11 / 13;
    grid-row: 1 / 3;
}

.card-5 {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
}

.card-6 {
    grid-column: 8 / 13;
    grid-row: 3 / 5;
}

.card-7 {
    grid-column: 4 / 8;
    grid-row: 5 / 7;
}

.card-8 {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

/* Чтобы низ справа тоже был заполнен */
.card-6 {
    grid-column: 8 / 13;
    grid-row: 3 / 7;
}

/* планшет */

@media (max-width: 991px) {
    .photo-archive-title {
        font-size: 44px;
    }

    .photo-archive-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(10, 80px);
        gap: 18px;
    }

    .card-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }

    .card-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 5;
    }

    .card-3 {
        grid-column: 1 / 3;
        grid-row: 3 / 5;
    }

    .card-4 {
        grid-column: 3 / 4;
        grid-row: 3 / 5;
    }

    .card-5 {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }

    .card-6 {
        grid-column: 3 / 7;
        grid-row: 5 / 9;
    }

    .card-7 {
        grid-column: 1 / 3;
        grid-row: 7 / 9;
    }

    .card-8 {
        grid-column: 1 / 4;
        grid-row: 9 / 11;
    }
}

/* mobile */

@media (max-width: 576px) {
    .photo-archive {
        padding: 70px 16px 80px;
    }

    .photo-archive-title {
        font-size: 34px;
    }

    .photo-archive-filters {
        gap: 10px;
        margin-bottom: 28px;
    }

    .photo-filter-btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .photo-archive-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .photo-card {
        border-radius: 18px;
    }
}


@media (max-width: 1100px) {
    .about-club-title {
        font-size: 44px;
    }

    .about-club-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-club-text {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .about-club-visual {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .about-club {
        padding: 70px 16px 80px;
    }

    .about-club-title {
        font-size: 34px;
    }

    .about-club-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-club-button {
        min-width: 145px;
        height: 48px;
        font-size: 15px;
    }

    .about-club-image-wrapper {
        border-radius: 20px;
    }

    .about-club-image-wrapper::before,
    .about-club-image-wrapper::after {
        width: 110px;
        height: 90px;
    }
}
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 30px;
    background: linear-gradient(180deg, #f7eefe 0%, #f4e7fb 45%, #f1e1f8 100%);
}

.site-footer-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.55) 0, rgba(255,255,255,0) 20%),
            radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.4) 0, rgba(255,255,255,0) 18%),
            radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.22) 0, rgba(255,255,255,0) 14%);
    z-index: 1;
}

.site-footer-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 95px;
    height: 290px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.26;
    background: url("../img/footer-bg.png") center bottom / cover no-repeat;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
            radial-gradient(circle, rgba(203, 233, 255, 0.8) 0 3px, transparent 4px),
            radial-gradient(circle, rgba(203, 233, 255, 0.7) 0 4px, transparent 5px),
            radial-gradient(circle, rgba(203, 233, 255, 0.6) 0 2px, transparent 3px);
    background-size: 180px 180px, 240px 240px, 140px 140px;
    background-position: 0 0, 50px 40px, 120px 90px;
    opacity: 0.55;
}

/*.site-footer-container {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*}*/

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 90px;
}

.site-footer-title {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #6d58d6;
}

.site-footer-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #5f5a75;
}

.site-footer-text-wide {
    max-width: 520px;
}

.site-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    min-width: 260px;
    height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #6f4cff 0%, #5f3df3 100%);
    box-shadow: 0 12px 26px rgba(102, 79, 243, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(102, 79, 243, 0.34);
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li + li {
    margin-top: 18px;
}

.site-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    color: #5f5a75;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-link:hover {
    color: #6d58d6;
    transform: translateX(2px);
}

.site-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    font-size: 18px;
    color: #6d58d6;
}

.site-footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
}

.site-footer-bottom p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #5f5a75;
}

@media (max-width: 1100px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 70px;
    }

    .site-footer-text-wide {
        max-width: 100%;
    }

    .site-footer-skyline {
        height: 220px;
        bottom: 85px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding: 70px 16px 24px;
    }

    .site-footer-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .site-footer-text,
    .site-footer-link,
    .site-footer-bottom p {
        font-size: 16px;
    }

    .site-footer-button {
        min-width: 220px;
        height: 54px;
        font-size: 16px;
        padding: 0 22px;
    }

    .site-footer-grid {
        gap: 30px;
        padding-bottom: 54px;
    }

    .site-footer-skyline {
        height: 170px;
        bottom: 72px;
    }
}

.upcoming-championship {
    position: relative;
    padding: 90px 20px 110px;
    background: linear-gradient(180deg, #fffefe 0%, #fcf6ff 55%, #fffefe 100%);
    overflow: hidden;
}

.upcoming-championship::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 15% 20%, rgba(245, 206, 232, 0.35), transparent 24%),
            radial-gradient(circle at 85% 25%, rgba(223, 209, 255, 0.35), transparent 24%),
            radial-gradient(circle at 50% 80%, rgba(255, 226, 244, 0.25), transparent 22%);
    pointer-events: none;
}

/*.upcoming-championship-container {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*}*/

.upcoming-championship-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 30px;

    padding: 56px 56px 56px 64px;
    border-radius: 34px;
    overflow: hidden;

    background:
            linear-gradient(120deg, rgb(198, 124, 255) 0%, rgba(225, 125, 243, 0.53) 45%, rgb(239, 220, 232) 100%),
            url("../img/upcoming-championship-bg.png") center/cover no-repeat;

    box-shadow: 0 24px 60px rgba(184, 126, 204, 0.24);
}

.upcoming-championship-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(255,255,255,0.16), transparent 22%),
            radial-gradient(circle at 80% 20%, rgba(255,255,255,0.14), transparent 18%),
            radial-gradient(circle at 70% 75%, rgba(255,255,255,0.10), transparent 24%);
    pointer-events: none;
}

.upcoming-championship-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.upcoming-championship-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.upcoming-championship-label {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7b3fb4;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}

.upcoming-championship-title {
    margin: 0 0 14px;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 700;
    color: #7b3fb4;
}

.upcoming-championship-date {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(208, 23, 174, 0.93);
}

.upcoming-championship-description {
    margin: 0 0 32px;
    font-size: 20px;
    line-height: 1.7;
    color: rgb(106 30 133 / 99%);
    max-width: 560px;
}

.upcoming-championship-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.upcoming-championship-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 60px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #7b3fb4;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.upcoming-championship-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(255, 255, 255, 0.24);
}

.upcoming-championship-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 420px;
}

.upcoming-championship-image {
    display: block;
    max-width: 430px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(93, 35, 115, 0.24));
}

@media (max-width: 1100px) {
    .upcoming-championship-card {
        grid-template-columns: 1fr;
        padding: 44px 30px;
        text-align: center;
    }

    .upcoming-championship-text {
        max-width: 100%;
    }

    .upcoming-championship-actions {
        justify-content: center;
    }

    .upcoming-championship-visual {
        min-height: auto;
    }

    .upcoming-championship-title {
        font-size: 48px;
    }

    .upcoming-championship-date {
        font-size: 20px;
    }

    .upcoming-championship-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }

    .upcoming-championship-image {
        max-width: 320px;
    }
}

@media (max-width: 700px) {
    .upcoming-championship {
        padding: 70px 16px 80px;
    }

    .upcoming-championship-card {
        border-radius: 24px;
        padding: 32px 20px;
    }

    .upcoming-championship-title {
        font-size: 36px;
    }

    .upcoming-championship-date {
        font-size: 17px;
    }

    .upcoming-championship-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .upcoming-championship-button {
        min-width: 200px;
        height: 52px;
        font-size: 16px;
    }
}


.about-club {
    position: relative;
    padding: 90px 20px 110px;
    background: linear-gradient(180deg, #fffefe 0%, #fcf6ff 55%, #fffefe 100%);
    overflow: hidden;
}

.about-club::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/about-club-decor.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
}

.about-club::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 120px;
    background: url("../img/about-ribbon.png") center bottom / cover no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

/*.about-club-container {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*}*/

.about-club-content {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(420px, 1fr);
    align-items: center;
    gap: 48px;
}

.about-club-text {
    max-width: 430px;
}

.about-club-title {
    margin: 0 0 24px;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    color: #5f2f88;
}

.about-club-description {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #7b6a86;
}

.about-club-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #f06fc8 0%, #c67cff 100%);
    box-shadow: 0 10px 24px rgba(214, 118, 226, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-club-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(214, 118, 226, 0.32);
}

.about-club-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-club-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 760px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(196, 160, 219, 0.18);
    background: linear-gradient(135deg, #fff6fb 0%, #f7ebff 100%);
}

.about-club-image-wrapper::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 180px;
    height: 120px;
    background: url("../img/about-floral-left.png") left bottom / contain no-repeat;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.about-club-image-wrapper::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -8px;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.about-club-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-club {
    padding: 90px 20px 110px;
    background: linear-gradient(180deg, #fffefe 0%, #fcf6ff 60%, #fffefe 100%);
}

.about-club-content {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(420px, 1fr);
    align-items: center;
    gap: 48px;
}

.about-club-text {
    max-width: 430px;
}

.about-club-title {
    margin: 0 0 24px;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    color: #5f2f88;
}

.about-club-description {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #7b6a86;
}

.about-club-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #f06fc8 0%, #c67cff 100%);
    box-shadow: 0 10px 24px rgba(214, 118, 226, 0.26);
    transition: 0.25s;
}

.about-club-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(214, 118, 226, 0.32);
}

.about-club-visual {
    display: flex;
    justify-content: flex-end;
}

.about-club-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 760px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(196, 160, 219, 0.18);
}

/* розовый фильтр поверх картинки */

.about-club-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(255, 180, 220, 0.25),
            rgba(230, 200, 255, 0.25)
    );
    pointer-events: none;
}

.about-club-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {

    .about-club-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-club-visual {
        justify-content: center;
    }

    .about-club-image-wrapper {
        max-width: 520px;
        width: 100%;
    }

}


.championships-subtitle a{
    text-decoration: none;
    color: #5f2f88;
}