/* Profile Page Styles */

/* Profile Hero */
.profile-hero {
    position: relative;
    height: 380px;
    background-image: url('image/profiles/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

/* Cyan diagonal/side overlay — left-heavy as in the design */
.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 84, 172, 0.88) 0%, rgba(20, 190, 217, 0.7) 100%);
    z-index: 1;
}

.profile-hero .container {
    position: relative;
    z-index: 2;
}

.profile-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.projects-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}


/* Profile Details Section */
.profile-details-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.profile-image-col {
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.profile-content-col {
    padding-top: 20px;
}

.profile-name {
    font-size: 36px;
    color: #1954AC;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.profile-role {
    font-size: 1.1rem;
    color: #14BED9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-divider {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #14BED9 0%, rgba(20, 190, 217, 0.15) 100%);
    margin: 1.5rem 0 2rem 0;
    max-width: 80px;
    border-radius: 2px;
}

.profile-bio p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .profile-content-col {
        padding-top: 0;
        text-align: center;
    }

    .support-cta-split {
        flex-direction: column;
    }

    .support-cta-split .cta-image-container {
        height: 350px;
    }

    .support-cta-split .cta-content-container {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .profile-hero h1 {
        font-size: 2.2rem;
    }

    .profile-name {
        font-size: 2rem;
    }
}