/* ==================================================
   BTS SHARED HERO SYSTEM
================================================== */


/* ==================================================
   HERO CONTAINER
================================================== */

.about-hero {

    position: relative;

    width: 100%;

    height: 600px;

    min-height: 600px;

    overflow: hidden;

    color: #FFFFFF;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}



/* ==================================================
   HERO OVERLAY
================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;


    background: linear-gradient(
        90deg,
        rgba(40,55,93,0.66) 0%,
        rgba(54,72,111,0.43) 48%,
        rgba(45,59,96,0.20) 100%
    );

}



/* ==================================================
   HERO CONTENT POSITIONING
================================================== */

.about-hero-shell {

    position: relative;

    z-index: 3;

    height: 600px;

    display: flex;

    align-items: center;

}



/* ==================================================
   HERO TEXT BLOCK
================================================== */

.about-hero-copy {

    max-width: 720px;

    padding-top: 80px;

}



/* ==================================================
   HERO KICKER
================================================== */

.about-hero-kicker {

    display: block;

    margin-bottom: 20px;

    color: rgba(255,255,255,0.90);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;

}



/* ==================================================
   HERO HEADING
================================================== */

.about-hero-copy h1 {

    max-width: 720px;

    margin: 0 0 23px;

    color: #FFFFFF;

    font-size: clamp(46px, 4.3vw, 66px);

    font-weight: 400;

    line-height: 1.06;

    letter-spacing: -0.045em;

    text-shadow: 0 4px 24px rgba(23,36,69,0.15);

}



/* ==================================================
   HERO PARAGRAPH
================================================== */

.about-hero-copy p {

    max-width: 690px;

    margin: 0;

    color: rgba(255,255,255,0.94);

    font-size: 17px;

    line-height: 1.72;

}



/* ==================================================
   HERO ACTION BUTTONS
================================================== */

.service-hero-actions {

    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 28px;

}



/* ==================================================
   HERO SECONDARY LINK
================================================== */

.service-text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #FFFFFF;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: gap 0.25s ease;

}


.service-text-link:hover {

    gap: 14px;

}