/* =========================================================
   PROFILE PAGE
   Sayfaya özel profesyonel görünüm
   ========================================================= */

.profile-page {
    background: #ffffff;
    padding: 28px 0 72px;
    color: #111111;
}

.profile-page * {
    box-sizing: border-box;
}

.profile-page a {
    text-decoration: none;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.profile-hero {
    padding: 42px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(196, 0, 0, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.profile-hero__content {
    max-width: 760px;
}

.profile-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #ffe8e8;
    color: #c40000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-hero__title {
    margin: 0 0 16px;
    color: #111111;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.profile-hero__text {
    margin: 0;
    max-width: 700px;
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 992px) {
    .profile-page {
        padding: 22px 0 56px;
    }

    .profile-hero {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .profile-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .profile-hero__title {
        font-size: 30px;
    }

    .profile-hero__text {
        font-size: 15px;
        line-height: 1.75;
    }
}