/* ─── MAIN ─── */

.page_width {
    width: 84%;
    max-width: 1440px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main h1 {
    font-size: clamp(1.1rem, 5.3vw, 57px);
    color: var(--color-blue);
    font-weight: 100;
    padding-bottom: clamp(20px, 4vw, 72px);
    margin-top: clamp(28px, 5vw, 90px);
    margin-bottom: 0;
    text-align: center;
}

main h2 {
    font-size: clamp(1rem, 2.7vw, 30px);
    color: var(--color-blue);
    font-weight: 100;
    padding-bottom: clamp(20px, 4vw, 72px);
    margin-top: clamp(28px, 5vw, 90px);
    margin-bottom: 0;
    text-align: center;
}

.main_box {
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(30px, 5vw, 90px);
}

.main_box p {
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--color-white);
    line-height: 1.7;
}

/* ─── WHY ME ─── */

#whyme_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3.5vw, 54px);
}

#whyme_content p {
    max-width: 50%;
}

#locate_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50%;
}

#locate_content img {
    width: clamp(20px, 4.5vw, 64px);
    height: auto;
}

#locate_content p {
    font-size: clamp(16px, 1.4vw, 27px);
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    margin: 10px 0 0 0;
}

#locate_content a {
    color: var(--color-blue);
    text-decoration: none;
}

/* ─── TEAMPLAYER ─── */

#teamplayer_content {
    display: flex;
    gap: clamp(10px, 1.8vw, 27px);
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(30px, 5vw, 90px);
}

.teamplayer_bubble {
    background-color: rgba(137, 188, 217, 0.1);
    border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
    width: clamp(160px, 30vw, 435px);
    height: clamp(90px, 25vw, 240px);
    padding: clamp(16px, 4.5vw, 63px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: clamp(4px, 0.5vw, 8px);
    transition: border-radius 0.5s ease, background-color 0.5s ease;
    box-sizing: border-box;
}

.teamplayer_bubble:hover {
    border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
    background-color: rgba(137, 188, 217, 0.2);
}

.teamplayer_name {
    color: var(--color-white);
    font-size: clamp(16px, 1.2vw, 17px);
    font-weight: 700;
    margin: 0;
    font-style: normal;
}

.teamplayer_project {
    color: var(--color-white);
    font-size: clamp(16px, 1.1vw, 17px);
    margin: 0;
    opacity: 0.7;
    font-style: normal;
}

.teamplayer_project a {
    color: var(--color-blue);
    text-decoration: none;
}

.teamplayer_text {
    color: var(--color-white);
    font-size: clamp(16px, 1.1vw, 17px);
    line-height: 1.6;
    margin: clamp(3px, 0.5vw, 8px) 0;
    opacity: 0.9;
    font-style: italic;
}

.teamplayer_linkedin {
    color: var(--color-blue);
    font-size: clamp(16px, 1.1vw, 17px);
    text-decoration: underline;
    margin: 0;
}
