.cropped-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.cropped2-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center 2%;
}

.cropped3-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

/* HERO */

.contact-hero {
    position: relative;
    min-height: 48vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(110, 170, 220, 0.18), transparent 35%),
        linear-gradient(180deg, #3f81ae 0%, #69a9d0 55%, #89bddc 100%);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.10), transparent 25%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 100px 0 80px 0;
}

.contact-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 22px;
    color: #ffffff;
}

.contact-lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #eef6fb;
    max-width: 720px;
}

/* KOMITÉSEKSJON */

.committee-wrapper {
    background: linear-gradient(180deg, #89bddc 0%, #a8d1e8 100%);
    padding: 70px 0 100px 0;
}

.committee-section {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    background: transparent;
}

.committee-title {
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
}

.committee-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.committee-row-4 .member-card {
    width: 23%;
}

.committee-row-5 .member-card {
    width: 18%;
}

.member-card {
    text-align: center;
}

.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0 auto 18px auto;
}

.member-name {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 6px 0;
    font-weight: 500;
    color: #ffffff;
}

.member-role {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 16px 0;
    font-style: italic;
    color: #e8f2f8;
}

.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.contact-icons a {
    color: #0077b5;
    text-decoration: none;
}

.contact-icons a:hover {
    opacity: 0.85;
}

/* FOOTER IKONER */

.footer-socials {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-socials a {
    color: #d6e2ee;
}

.footer-socials a:hover {
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .profile-img {
        width: 190px;
        height: 190px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-role {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .committee-row {
        flex-wrap: wrap;
    }

    .committee-row-4 .member-card,
    .committee-row-5 .member-card {
        width: 45%;
    }

    .profile-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .contact-hero-content {
        padding: 85px 0 70px 0;
    }
}

@media (max-width: 600px) {
    .committee-section {
        padding: 0 10px;
    }

    .committee-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .committee-row-4 .member-card,
    .committee-row-5 .member-card {
        width: 100%;
    }

    .profile-img {
        width: 170px;
        height: 170px;
    }

    .member-name {
        font-size: 19px;
    }

    .member-role {
        font-size: 16px;
    }
}

main {
    background: linear-gradient(180deg, #86bbdc 0%, #a9d3e8 100%) !important;
}

.committee-wrapper,
.committee-section {
    background: transparent !important;
}

body {
    background: linear-gradient(180deg, #5b98c1 0%, #86bbdc 40%, #a9d3e8 100%) !important;
}

.profile-cai {
    object-position: 50% 20%;
}