/* =========================
   TAB BUTTONS
========================= */
.heroes-tab-buttons .wp-block-button {
    margin-right: 10px;
}

.heroes-tab-buttons .wp-block-button.active .wp-block-button__link {
    background: #000;
    color: #fff;
}

/* =========================
   TAB CONTENT VISIBILITY
========================= */
.heroes-tab-content {
    display: none;
    margin-top: 20px;
}

.heroes-tab-content.active {
    display: block;
}

/* =========================
   GUEST SPEAKER CARD
   (ONLY activates if heroes-speaker class exists)
========================= */
.heroes-tab-content .heroes-speaker,
.heroes-tab-content .wp-block-group.heroes-speaker {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
    background: #f9f9f9;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Guest speaker image */
.heroes-tab-content .heroes-speaker img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Text column */
.heroes-tab-content .heroes-speaker-info {
    display: flex;
    flex-direction: column;
}

/* Name */
.heroes-tab-content .heroes-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

/* Title */
.heroes-tab-content .heroes-title {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Bio */
.heroes-tab-content .heroes-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* =========================
   POST INFO TAB — LEAVE IT ALONE
========================= */
.heroes-tab-content .wp-block-group__inner-container {
    max-width: 100%;
}

.heroes-tab-content p {
    margin-bottom: 1em;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .heroes-tab-content .heroes-speaker {
        flex-direction: column;
        align-items: flex-start;
    }

    .heroes-tab-content .heroes-speaker img {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
}

/* =========================
   GUEST SPEAKER – FINAL SAFE LAYOUT
========================= */

/* DEFAULT: Post Info tab = normal flow */
.heroes-tab-content > .wp-block-group__inner-container {
    display: block;
}

/* ONLY when an image exists (Guest Speaker tab) */
.heroes-tab-content.active:has(.wp-block-image)
> .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 20px;
    align-items: center; /* center image + name/title */
}

/* Image */
.heroes-tab-content.active .wp-block-image img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* Name + Title block */
.heroes-tab-content.active .wp-block-image + p {
    margin: 0;
}

/* Bio goes underneath full width */
.heroes-tab-content.active .wp-block-image ~ p:last-of-type {
    grid-column: 1 / -1;
    margin-top: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .heroes-tab-content.active:has(.wp-block-image)
    > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .heroes-tab-content.active .wp-block-image {
        margin-bottom: 12px;
    }
}

/* =========================
   HEROES TAB BUTTONS - TAB STYLE
========================= */

.heroes-tab-buttons {
    display: flex;
    gap: 2px;
    border-bottom: 2px solid #ddd; /* light gray line under all buttons */
    padding-bottom: 0; /* buttons sit on line */
}

.heroes-tab-buttons .wp-block-button__link {
    border-radius: 0;           /* remove pill corners */
    border: 1px solid #ccc;     /* light border for tab separation */
    border-bottom: none;        /* merge with tab content */
    background: #f1f1f1;        /* light gray default */
    color: #333;                /* dark text */
    padding: 8px 16px;          /* comfy padding */
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Active tab */
.heroes-tab-buttons .wp-block-button.active .wp-block-button__link {
    background: #222;           /* black active tab */
    color: #fff !important;     /* white text */
    border-color: #000;         /* border matches background */
    border-bottom: 2px solid #000; /* visually connect with content */
}

/* Hover on inactive tabs */
.heroes-tab-buttons .wp-block-button__link:hover {
    background: #333;           /* dark gray on hover */
    color: #fff !important;     /* white text for readability */
}

/* Remove margin-right so tabs sit flush */
.heroes-tab-buttons .wp-block-button {
    margin-right: 0;
}