/* ========================================
   PAGE HERO
======================================== */

.page-hero {
    position: relative;

    height: 420px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* Dark Overlay */

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 50, 0.92) 0%,
        rgba(0, 0, 50, 0.75) 40%,
        rgba(0, 0, 50, 0.35) 70%,
        rgba(0, 0, 50, 0) 100%
    );
}

/* No featured image */

.page-hero.no-image {
    background: #000032;
}

/* Hero Content */

.page-hero-content {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 0 30px;
}

/* Page Title */

.page-hero-content h1 {
    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);

    font-family: 'Jawbreak', sans-serif;
	
	font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin: 0;
}

/* ========================================
   CONTENT AREA
======================================== */

.page-content-wrapper {
    padding: 80px 30px;
}

/* Container */

.page-content-container {
    max-width: 1200px;

    margin: 0 auto;

    background: #ffffff;

    padding: 50px;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.05);
}

/* Typography */

.page-content-container h2 {
    margin-bottom: 20px;
    color: #000032;
}

.page-content-container h3 {
    margin-bottom: 15px;
    color: #000032;
}

.page-content-container p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .page-hero {
        height: 280px;
    }

    .page-content-wrapper {
        padding: 50px 20px;
    }

    .page-content-container {
        padding: 30px;
    }
}