/* Section Background */
.cv-team-detail-section {
    background-color:#D9E6FF; /* Light grey background matching the image */
    color: #334155;
    position: relative;
    z-index: 0;
}

/* Image Wrapper (Square, Dark Slate with Green Glow & Diagonal Lines) */
.cv-detail-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Creates a perfect square */
    background-color: #0b1120;
    background-image: 
        radial-gradient(circle at 50% 40%, #e61e2563 0%, transparent 60%), repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255, 255, 255, 0.04) 4px, rgba(255, 255, 255, 0.04) 5px);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Ensure the image sits properly at the bottom of the square */
.cv-detail-img {
    position: absolute;
    bottom: 0;
    max-height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 2;
    mix-blend-mode: normal; 
}

/* Typography Overrides */
.cv-detail-title {
    color: #000;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.cv-detail-position {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.cv-detail-bio {
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

/* Contact Info Box */
.cv-contact-box {
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    background-color: transparent;
}

.cv-border-right {
    border-right: 1px solid #cbd5e1;
}

.cv-contact-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.cv-contact-value {
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.cv-contact-value:hover {
    color: #26b15d; /* Brand Green on hover */
}

/* Social Icons */
.cv-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cv-social-link:hover {
    background-color: #cda85f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Sub Section Title */
.cv-subsection-title {
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
}

/* Responsive Fixes */
@media (max-width: 575px) {
    .cv-border-right {
        border-right: none;
        border-bottom: 1px solid #cbd5e1;
    }
}