/* TEAM COMPONENTS */
.aboutteam {
    padding: 100px 0px;
}

/* ABOUT PAGE SECTIONS */
.aboutinfo {
    padding: 0;
}

/* Simplified heading styles using new heading system variables */
.aboutinfo h1, .aboutinfo h2 {
    color: var(--heading-color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--heading-margin-bottom);
    padding: 70px 0px; /* Keep existing padding */
}

.aboutinfo p {
    color: var(--color-text-primary);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* INTRO SECTIONS (duplicate of aboutinfo) */
.intro {
    padding: 0;
}

.intro h1, .intro h2 {
    color: var(--heading-color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--heading-margin-bottom);
    padding: 70px 0px; /* Keep existing padding */
}

.intro p {
    color: var(--color-text-primary);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.aboutimgs {
    padding: 80px 0px;
}

.aboutimgs .image-wrapper {
    margin-bottom: 30px;
}

.aboutimgs .image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
}

.aboutlook {
    padding: 70px 0px;
}

.aboutlook h2 {
    color: var(--heading-color-primary);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--heading-margin-bottom);
}

.aboutlook .points h3 {
    color: var(--heading-color-accent);
    font-size: var(--font-size-4xl); /* Keep the large size */
    line-height: var(--heading-line-height-tight);
    font-weight: var(--font-weight-bold);
    margin-bottom: 30px;
}

.aboutlook .points p {
    color: var(--color-text-secondary);
    margin-bottom: 11px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.364em;
}

.aboutteam h2 {
    color: var(--heading-color-primary);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--heading-margin-bottom);
}

.aboutteam .card-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.aboutteam .card-row > div {
    margin-bottom: 32px;
    display: flex;
}

.aboutteam .card-row .card {
    width: 100%;
}

/* Team Card Styles - Using unified card system */
/* Team cards now use .card.card-team from cards.css */
/* Additional team-specific overrides can be added here if needed */

/* Contact Info Styles for Team Cards */
.cinfo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cinfo > img {
    width: 24px;
    min-width: 24px;
    min-height: 24px;
    max-height: 24px;
    margin-right: 15px;
}

.cinfo a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.111em;
    text-decoration: none !important;
}

.cinfo a:hover {
    color: var(--color-accent);
    text-decoration: underline !important;
}

/* SINGLE TEAM MEMBER PAGES */
.single--team {
    padding-bottom: 5rem;
}

.single--team::before {
    min-height: 350px;
    background-color: var(--color-bg-secondary);
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
}


.single--team .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: var(--radius-2xl);
    border-bottom-left-radius: var(--radius-2xl);
}

.single--team .designation--label {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--color-bg-primary);
    background: var(--color-primary);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
}

.single--team .inner {
    padding: 40px;
}

.single--team .inner .bio p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.single--team .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single--team .inner ul li {
    margin-bottom: 15px;
}

.single--team .inner ul li a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
}

.single--team .inner ul li a i {
    margin-right: 8px;
    color: var(--color-primary);
}

.single--team .inner hr {
    width: 100%;
    min-height: 1px;
    border-color: var(--color-text-muted);
    margin-top: 35px;
    margin-bottom: 35px;
}

/* MEMBER LISTINGS */
/* Member listings styles moved to cards-sections.css to avoid duplication */