/* Listing grid (Team page) */
.psycheco-team-grid {
    display: grid;
    grid-gap: 40px;
    margin: 40px 0;
}
.psycheco-team-grid.psycheco-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.psycheco-team-grid.psycheco-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
    .psycheco-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .psycheco-team-grid {
        grid-template-columns: 1fr;
    }
}
.psycheco-team-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    text-align: center;
    padding-bottom: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.psycheco-team-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.psycheco-team-image img {
    display: block;
    width: 100%;
    height: auto;
}
.psycheco-team-content {
    padding: 5px 25px 5px 25px;
}
.psycheco-team-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
}
.psycheco-team-name a {
    color: inherit;
    text-decoration: none;
}
.psycheco-team-name a:hover {
    text-decoration: underline;
}
.psycheco-team-designation {
    font-size: 14px;
    color: #888888;
    margin: 0 0 12px 0;
}
.psycheco-team-short {
    font-size: 14px;
    color: #666666;
    margin: 0 0 18px 0;
}
.psycheco-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.psycheco-team-social a {
    font-size: 0;
    text-decoration: none;
}
.psycheco-team-social .dashicons {
    font-size: 16px;
    width: 18px;
    height: 18px;
    color: #999999;
    transition: color 0.2s ease;
}
.psycheco-team-social a:hover .dashicons {
    color: #8d5fd3;
}

/* Single team layout: rely on theme hero, center content */
.psycheco-single-team-wrapper {
    max-width: 1140px;
    margin: 10px auto 10px auto;
    padding: 0 20px;
}
.psycheco-single-team-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    grid-gap: 60px;
    align-items: flex-start;
    margin-bottom: 10px;
}
@media (max-width: 900px) {
    .psycheco-single-team-inner {
        grid-template-columns: 1fr;
    }
}
.psycheco-single-team-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 35px rgba(0,0,0,0.03);
    padding: 30px 30px 25px 30px;
    text-align: center;
}
.psycheco-single-team-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.psycheco-single-team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.psycheco-single-team-role {
    font-size: 13px;
    color: #999999;
    margin-bottom: 15px;
}
.psycheco-single-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.psycheco-single-team-social a {
    color: #999999;
    font-size: 16px;
    text-decoration: none;
}
.psycheco-single-team-social a:hover {
    color: #8d5fd3;
}
.psycheco-single-team-main p {
    margin-top: 0;
    margin-bottom: 18px;
    color: #555555;
    line-height: 1.8;
}
.psycheco-single-team-main ul {
    padding-left: 18px;
    margin-bottom: 18px;
}
.psycheco-single-team-main li {
    margin-bottom: 4px;
}

/* Tabs styled like outline buttons */
.psycheco-team-tabs {
    text-align: center;
    margin-bottom: 30px;
}
.psycheco-team-tabs-nav {
    display: inline-flex;
    border-collapse: collapse;
}
.psycheco-team-tabs-nav button {
    background: transparent;
    border: 1px solid #b488e8;
    color: #b488e8;
    padding: 10px 40px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 0;
    margin-right: -1px;
}
.psycheco-team-tabs-nav button.active {
    background: #b488e8;
    color: #ffffff;
}
.psycheco-team-tabs-content {
    display: none;
    max-width: 900px;
    margin: 25px auto 0 auto;
    text-align: left;
}
.psycheco-team-tabs-content.active {
    display: block;
}
.psycheco-team-tabs-content p {
    color: #555555;
    line-height: 1.8;
}
