@font-face {
    font-family: 'Cy Grotesk Wide';
    src: url('../fonts/CyGrotesk-WideRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cy Grotesk WideBold';
    src: url('../fonts/CyGrotesk-WideBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

h2 {
    font-family: 'Cy Grotesk WideBold', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: white;
}

h4 {
    font-family: 'Cy Grotesk WideBold', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 3%;
    vertical-align: bottom;
    text-transform: uppercase;
    color: white;
}

.mp-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mp-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.mp-hero__bg-wrapper {
    position: relative;
    inset: 0;
    width: 100%;
    aspect-ratio: 1400 / 688;
    min-width: 1000px;
}

.mp-hero__details-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1157px;
    gap: 345px;
    inset: 0;
    margin: 0 auto;
}

.mp-hero__details-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100px;
}

.mp-hero__detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    pointer-events: none;
}

.mp-hero__overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #131313);
    pointer-events: none;
}

.mp-hero__header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 40px 0;
}

.mp-hero__logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mp-hero__logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.mp-hero__logo-icon svg {
    width: 100%;
    height: 100%;
}

.mp-hero__org-names {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mp-hero__org-name {
    font-size: 11px;
    color: #ffffff;
    line-height: 1.3;
    opacity: 0.9;
}

.mp-hero__title-area {
    max-width: 500px;
}

.mp-hero__title {
    font-size: 40px;
    color: #ffffff;
    line-height: 1.15;
}

.mp-hero__subtitle-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.mp-hero__subtitle {
    width: 120px;
    color: rgba(255,255,255,0.7);
}

.mp-hero__details-label {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.4;
    vertical-align: bottom;
}

.mp-hero-btn {
    color: white;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .mp-hero__title { font-size: 30px; }
}

@media (max-width: 900px) {
    .mp-hero { height: 500px; }
    .mp-hero__subtitle-area { flex-direction: column;  margin-top: 48px; }
    .mp-hero__details-container {
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }
    .mp-hero__details-area {
        flex-direction: row;
        justify-content: center;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .mp-hero__bg-wrapper { transform: translateX(calc(50vw - 100vw));
        inset: inherit;
        height: 100%; }
    .mp-hero__title-area { top: 43%; left: 24px; }
    .mp-hero__title { font-size: 22px; }
    .mp-hero__header { padding: 20px 20px 0 20px; }
    .mp-hero__subtitle-area { flex-direction: column; align-items: flex-start; margin-top: 24px; }
}