.hero {
    min-height: 500px;
    padding: clamp(28px, 6vw, 70px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
    gap: clamp(24px, 5vw, 58px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 18px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
        radial-gradient(120% 48% at 82% 100%, rgba(139, 197, 63, 0.72) 0 48%, transparent 49%),
        radial-gradient(110% 44% at 18% 100%, rgba(196, 220, 54, 0.58) 0 46%, transparent 47%),
        #ecfbff;
    box-shadow: 0 28px 70px rgba(7, 31, 50, 0.16);
}

.hero-logo {
    min-width: 0;
    padding: 24px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    border-radius: 18px 30px 16px 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 58px rgba(7, 31, 50, 0.18);
}

.hero-logo img {
    display: block;
    width: min(320px, 100%);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.hero-photo img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    border-radius: 12px 22px 10px 18px;
    background: rgba(255, 253, 245, 0.72);
}

.hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -95px;
    width: min(390px, 50vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(247, 201, 54, 0.86);
    z-index: -1;
}

.hero-main {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--navy);
    font-family: "Arial Black", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.98;
    font-weight: 900;
    text-wrap: balance;
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.95), 7px 7px 0 rgba(247, 201, 54, 0.45);
}

.hero-subtitle,
.hero-intro {
    width: fit-content;
    max-width: min(690px, 100%);
    margin: 0 0 12px;
    padding: 10px 16px;
    border-radius: 8px 15px 7px 17px;
    color: var(--navy);
    font-weight: 900;
    line-height: 1.5;
}

.hero-subtitle {
    background: rgba(247, 201, 54, 0.9);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-intro {
    background: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 1.7vw, 19px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.primary-action,
.secondary-action,
.club-info-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px 18px 11px 20px;
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.primary-action {
    background: var(--yellow);
    box-shadow: 8px 8px 0 var(--navy);
}

.secondary-action {
    border: 2px solid rgba(7, 31, 50, 0.12);
    background: var(--white);
}

.club-info {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 20px 48px rgba(7, 31, 50, 0.14);
}

.club-info-intro {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.club-info-intro h2 {
    max-width: 780px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4.8vw, 50px);
    line-height: 1.08;
    font-weight: 900;
    text-wrap: balance;
}

.club-info-intro > p {
    max-width: 760px;
    margin: 0;
    padding: 16px 20px;
    border-top: 6px solid var(--yellow);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    line-height: 1.5;
}

.club-info-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.club-info-highlights div {
    min-width: 0;
    padding: 18px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(7, 31, 50, 0.16);
}

.club-info-highlights div:nth-child(2) {
    background: var(--yellow);
    color: var(--navy);
}

.club-info-highlights div:nth-child(3) {
    background: var(--turquoise-dark);
}

.club-info-highlights strong,
.club-info-highlights span {
    display: block;
}

.club-info-highlights strong {
    margin-bottom: 4px;
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1;
    font-weight: 900;
}

.club-info-highlights span {
    font-size: 14px;
    font-weight: 800;
}

.club-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.95fr;
    gap: 14px;
    align-items: stretch;
}

.club-panel {
    min-width: 0;
    padding: 20px;
    border: 2px solid rgba(7, 31, 50, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(7, 31, 50, 0.08);
}

.club-panel-schedule {
    background: rgba(68, 199, 197, 0.18);
}

.panel-label {
    margin: 0 0 7px;
    color: var(--turquoise-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.club-panel h3,
.club-documents h3,
.news-heading h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.1;
    font-weight: 900;
}

.club-panel p,
.club-panel li {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.55;
}

.club-panel p {
    margin: 0 0 12px;
}

.club-panel > a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 8px;
    color: var(--turquoise-dark);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.activity-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.activity-list li,
.schedule-list div {
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--navy);
    font-weight: 900;
    line-height: 1.35;
}

.schedule-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.schedule-list dt,
.schedule-list dd {
    margin: 0;
    font-weight: 900;
}

.schedule-list dt {
    color: var(--pink);
}

.schedule-list dd {
    color: var(--navy);
}

.club-documents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 2px dashed rgba(7, 31, 50, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.club-documents h3 {
    margin-bottom: 0;
}

.club-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.club-info-actions a {
    min-height: 44px;
    padding: 8px 15px;
    background: var(--navy);
    color: var(--white);
}

.club-info-actions a:first-child {
    background: var(--yellow);
    color: var(--navy);
}

.club-info-actions a:nth-child(2) {
    background: var(--turquoise-dark);
}

.index-news {
    width: min(860px, 100%);
    justify-self: center;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(7, 31, 50, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 20px 48px rgba(7, 31, 50, 0.14);
    backdrop-filter: blur(8px);
}

.index-news-heading {
    margin: 0 0 18px;
}

.index-news-heading p {
    margin: 0 0 6px;
    color: var(--turquoise-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.index-news-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(25px, 4vw, 40px);
    line-height: 1.1;
    font-weight: 900;
}

.index-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
    gap: 14px;
}

.index-news-card {
    min-width: 0;
    overflow: hidden;
    border: 2px solid rgba(7, 31, 50, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(7, 31, 50, 0.08);
}

.index-news-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 253, 245, 0.9);
}

.index-news-card time {
    display: block;
    margin: 18px 18px 9px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.index-news-card h3 {
    margin: 0 18px 10px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.15;
}

.index-news-card > p,
.index-news-empty {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.55;
}

.index-news-card > p {
    padding: 0 18px 18px;
}

.index-news-empty {
    padding: 18px;
    border: 2px dashed rgba(7, 31, 50, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
    .hero,
    .club-info-intro,
    .club-info-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .club-info-highlights,
    .index-news-list {
        grid-template-columns: 1fr;
    }

    .club-documents {
        align-items: flex-start;
        flex-direction: column;
    }

    .club-info-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 26px 20px;
    }

    .activity-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(39px, 16vw, 64px);
    }
}
