/* =========================
   PROFILE BANNER
========================= */
.profile-banner {
    width: 100%;
    background: #05345c;
}

/* =========================
   INNER WRAPPER
========================= */
.profile-banner-inner {
    max-width: 1400px;
    margin: auto;
    padding: 40px 40px;          /* compact height */
    display: flex;
    align-items: stretch;       /* image & text same height */
    gap: 50px;
}

/* =========================
   CONTENT
========================= */
.profile-banner-content {
    max-width: 720px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-banner-content h1 {
    font-size: 36px;
    margin-bottom: 18px;
}

.profile-banner-content p {
    font-size: 15.8px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #e6eef5;
}

/* =========================
   EXPLORE BUTTON
========================= */
.profile-banner-btn {
    position: relative;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;

    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;

    border: 1px solid #e11d2a;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

/* hover background animation */
.profile-banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #e11d2a;
    z-index: -1;
    transition: width 0.4s ease;
}

.profile-banner-btn:hover::before {
    width: 100%;
}

.profile-banner-btn .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.profile-banner-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* =========================
   IMAGE
========================= */
.profile-banner-image {
    display: flex;
    align-items: center;
}

.profile-banner-image img {
    max-width: 320px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .profile-banner-inner {
        flex-direction: column;
        align-items: center;
        padding: 36px 22px;
        text-align: center;
    }

    .profile-banner-content {
        align-items: center;
    }

    .profile-banner-image img {
        max-width: 260px;
        height: auto;
        margin-top: 24px;
    }
}

@media (max-width: 576px) {

    .profile-banner-content h1 {
        font-size: 26px;
    }

    .profile-banner-content p {
        font-size: 15px;
    }
}
