/**
=====================================================
ABOUT PAGE
=====================================================
*/

/* ==================================================
   HERO
   ================================================== */
#hero {
    overflow: hidden;
    padding: 120px 0px 120px 0px;
    margin-top: 110px;
    height: 540px;
    position: relative;
}

#hero h1 {
    font-weight: 900;
    color: var(--color-text);
}

#hero .supporting-title {
    font-weight: 600;
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .hero-background .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            color-mix(in srgb, #ffffff00, transparent 20%) 0%,
            color-mix(in srgb, #ededed00, transparent 10%) 100%);
}

.hero .container {
    z-index: 2;
}

#hero .row {
    height: 100%;
    align-items: center;
}




/* ==================================================
   music
   ================================================== */
#music {
    position: relative;
}

#music .music-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#music .music-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#music .music-background .overlay {
    position: absolute;
    inset: 0;
    background: #101010;
}

#music .container {
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
}

#music h2,
#music .supporting-title {
    color: var(--color-white);
}

#music .music-list h3 {
    font-weight: 900;
    color: var(--color-primary);
}

#music p{
    color: var(--color-white);
    text-align: center;
}

#music iframe{
    width: 100%;
    height: 640px;
    border-radius: 25px;
}



/* ==================================================
   team
   ================================================== */
.team-card {
    background: var(--color-primary);
}
#team .container {
    position: relative;
    z-index: 2;
    padding: 0px 15px 40px 15px;
}

#team h2 {
    margin-bottom: 0.5rem;
}

#team .supporting-title {
    font-weight: 600;
    font-size: var(--fs-md);
}

#team .team-list h3 {
    font-weight: 700;
}

#team .team-list .post-link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text);
}


@media (max-width: 767px) {
    .post-card {
        max-width: 400px;
        margin: 0 auto;
    }
}