/* Youth Teams Hero Blocks - Refined Club Style */
.youth-hero-blocks {
    margin-top: 30px;
}

.youth-hero-block {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 220px;
    display: flex;
    align-items: center;
}

/* Background Image Integration */
.youth-hero-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Academy Section Logo */
.youth-hero-block.academy::before {
    background-image: linear-gradient(to right, rgba(17, 19, 18, 0.9) 20%, rgba(17, 19, 18, 0.4) 100%), url('/img/background/class.jpg');
}

.youth-hero-block.academy::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    width: 220px;
    height: 220px;
    background: url('/img/logo-crest.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: translateY(-50%) rotate(5deg);
    z-index: 2;
    pointer-events: none;
}

/* Fundacja Section Logo */
.youth-hero-block.fundacja::before {
    background-image: linear-gradient(to right, rgba(7, 86, 68, 0.9) 20%, rgba(7, 86, 68, 0.4) 100%), url('/img/background/class.jpg');
}

.youth-hero-block.fundacja::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    width: 200px;
    height: 200px;
    background: url('/img/logo-serduszko.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    transform: translateY(-50%) rotate(-5deg);
    z-index: 2;
    pointer-events: none;
}

/* Academy Section */
.youth-hero-block.academy {
    background-color: #111312;
    /* Black base */
}

/* Fundacja Section - Green */
.youth-hero-block.fundacja {
    background-color: #075644;
    /* Dark Club Green */
    border-color: rgba(14, 235, 121, 0.2);
}

.youth-hero-block .inner {
    position: relative;
    padding: 40px;
    z-index: 10;
    width: 100%;
}

.youth-hero-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #FFD800;
    /* Yellow for both headers for consistency and impact */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Graphic Accent: Lines Inner */
.youth-hero-block .inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: url('/img/lines.svg') repeat-x bottom;
    background-size: auto 100%;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.youth-teams-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-tag {
    padding: 10px 20px;
    border-radius: 4px;
    /* More angular, matching club style */
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 1px solid rgba(255, 216, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    backdrop-filter: blur(4px);
}

.youth-hero-block.academy .team-tag:hover {
    background: #FFD800;
    color: #111312;
    border-color: #FFD800;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 216, 0, 0.3);
}

.youth-hero-block.fundacja .team-tag:hover {
    background: #FFD800;
    color: #111312;
    border-color: #FFD800;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 216, 0, 0.3);
}

@media (max-width: 768px) {
    .youth-hero-block h2 {
        font-size: 1.6rem;
    }

    .youth-hero-block .inner {
        padding: 30px 20px;
    }

    .youth-hero-block {
        min-height: auto;
    }
}