body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* This page has no search bar in the header, so nav-links (profile icon,
   About, cart) is the only child of .header-content. With the shared
   kstyle.css rule of justify-content:space-between, a lone flex child
   sits flush left — but on the homepage it appears flush right (pushed
   there by the search bar). This keeps the About page's nav cluster in
   that same right-aligned spot for visual consistency. */
.desktop-header .header-content {
    justify-content: flex-end;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

.about-section {
    padding: clamp(20px, 5vw, 50px);
    text-align: center;
    background-color: #474e5d;
    color: white;
}
.about-section h1 { font-size: clamp(1.3rem, 4vw, 2rem); }
.about-section p { font-size: clamp(0.85rem, 2vw, 1rem); }
.row::after { content: ""; clear: both; display: table; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: clamp(24px, 5vw, 44px);
    column-gap: clamp(10px, 3vw, 24px);
    max-width: 760px;
    margin: 0 auto;
    padding: 10px 16px 50px;
}
.team-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.team-circle .circle-img {
    width: clamp(88px, 22vw, 150px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    background: #eee;
    flex-shrink: 0;
}
.team-circle .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-circle .circle-img.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dde1e8;
    color: #8a93a6;
    font-size: clamp(1.4rem, 5vw, 2rem);
    border-style: dashed;
    border-color: #b7bdc9;
}
.team-name {
    margin: 12px 0 0;
    font-size: clamp(0.75rem, 2.2vw, 0.95rem);
    font-weight: 600;
    color: #333;
}
.team-tag {
    display: inline-block;
    margin-top: 5px;
    background: #474e5d;
    color: #fff;
    font-size: clamp(0.58rem, 1.6vw, 0.7rem);
    padding: 4px 13px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

@media screen and (max-width: 500px) {
    .about-section { padding: 20px 12px; }
    .team-grid { padding: 10px 8px 40px; }
}
