/* Garante grid 2x2 para os articles da central de liderança */
.leadership-content > .leadership-panels {
    display: grid !important;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.leadership-content > .leadership-panels > * {
    min-width: 0;
}
/* Garante que não seja sobrescrito por regras globais de section */
.leadership-content > section.leadership-panels {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    padding: 0;
}
/* Central de Liderança layout refinado */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
}

.main-nav .nav-link {
    font-weight: 500;
    padding: 10px 18px;
    color: #ffffff;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: #e11923;
    background-color: rgba(225, 25, 35, 0.1);
    border-radius: 999px;
}

.main-nav .nav-link[aria-current="page"] {
    color: #e11923;
    font-weight: 600;
}

.hero-section.hero-leadership {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    align-items: center;
    gap: clamp(24px, 4.5vw, 48px);
    padding: 20px clamp(20px, 5vw, 72px) 96px;
    background: linear-gradient(140deg, #0f172a 0%, rgba(15, 23, 42, 0.94) 45%, rgba(225, 25, 35, 0.92) 100%);
    color: #fff;
}

.hero-section.hero-leadership .hero-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
}

.hero-section.hero-leadership .hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-section.hero-leadership h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    text-align: left;
}

.hero-section.hero-leadership p {
    text-align: justify;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-action:hover,
.hero-action:focus {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.24);
}

.hero-action.primary {
    background-color: #fff;
    color: #0f172a;
    border-color: #fff;
}

.hero-action.primary:hover,
.hero-action.primary:focus {
    background-color: rgba(255, 255, 255, 0.92);
}

.hero-action.ghost {
    background-color: transparent;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.2);
}

.hero-action.ghost:hover,
.hero-action.ghost:focus {
    background-color: rgba(15, 23, 42, 0.08);
}

.hero-section.hero-leadership .hero-action.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-section.hero-leadership .hero-action.ghost:hover,
.hero-section.hero-leadership .hero-action.ghost:focus {
    background-color: rgba(255, 255, 255, 0.16);
}

.hero-section.hero-leadership .hero-media {
    display: flex;
    justify-content: center;
}

.hero-section.hero-leadership .hero-media img {
    width: 530px;
    height: 350px;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(8, 15, 30, 0.4);
    object-fit: cover;
    max-height: 380px;
}

.calendar-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    align-items: stretch;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(24px, 6vw, 48px) clamp(20px, 6vw, 72px);
    background: linear-gradient(140deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 40%, rgba(225, 25, 35, 0.88) 100%);
    color: #fff;
}

.calendar-hero__copy {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
}

.calendar-hero__copy h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.1rem);
    margin: 0;
}

.calendar-hero__copy p {
    margin: 0;
    line-height: 1.6;
    text-align: justify;
    color: rgba(255, 255, 255, 0.92);
}

.calendar-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.calendar-hero__viewer {
    background: rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(8, 15, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
}

.calendar-hero__viewer iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    background: #fff;
}

.hero-section.hero-feedz {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    align-items: center;
    gap: clamp(24px, 4.5vw, 48px);
    padding: 20px clamp(20px, 5vw, 72px) 96px;
    background: linear-gradient(135deg, #003459, #006494 55%, rgba(225, 25, 35, 0.85));
    color: #fff;
}

.hero-section.hero-feedz .hero-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
}

.hero-section.hero-feedz p {
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.hero-section.hero-feedz .hero-media {
    display: flex;
    justify-content: center;
}

.hero-section.hero-feedz .hero-media img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(8, 15, 30, 0.4);
    object-fit: cover;
    max-height: 380px;
}

.hero-section.hero-talent-referral {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    align-items: center;
    gap: clamp(24px, 4.5vw, 48px);
    padding: 20px clamp(20px, 5vw, 72px) 96px;
    background: linear-gradient(140deg, #111827 0%, rgba(17, 24, 39, 0.94) 45%, rgba(225, 25, 35, 0.9) 100%);
    color: #fff;
}

.hero-section.hero-talent-referral .hero-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
}

.hero-section.hero-talent-referral p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.hero-section.hero-talent-referral .hero-media {
    display: flex;
    justify-content: center;
}

.hero-section.hero-talent-referral .hero-media img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(8, 15, 30, 0.4);
    object-fit: cover;
    max-height: 380px;
}

.leadership-content {
    width: 100%;
    max-width: 100vw;
    padding: clamp(48px, 6vw, 96px) clamp(24px, 6vw, 96px) 120px;
    background: #f8fafc;
    box-sizing: border-box;
}

.leadership-content section {
    margin-bottom: clamp(48px, 8vw, 88px);
}

.leadership-feedback {
    margin: 0 auto clamp(40px, 6vw, 72px);
    padding: 20px 26px;
    border-radius: 16px;
    font-weight: 500;
    max-width: 880px;
}

.leadership-feedback.sucesso {
    background: rgba(21, 128, 61, 0.12);
    border: 1px solid rgba(21, 128, 61, 0.3);
    color: #166534;
}

.leadership-feedback.erro {
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.32);
    color: #9f1239;
}

.leadership-overview {
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
}

.leadership-card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.leadership-card.focus {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leadership-card ul {
    margin-left: 18px;
    color: #1f2937;
}

.metric-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.metric-pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(225, 25, 35, 0.08);
    color: #7c141a;
    font-weight: 600;
    font-size: 0.9rem;
}

.inline-link {
    color: #e11923;
    font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
    text-decoration: underline;
}

.leadership-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
}

.leadership-side-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-content: start;
}

.panel-card.panel-card--resources,
.panel-card.panel-card--actions,
.panel-card.panel-card--programs,
.panel-card.panel-card--calendar {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.4vw, 24px);
}

.panel-card.panel-card--resources {
    grid-column: auto;
}

.panel-card.panel-card--actions {
    grid-column: auto;
}

.panel-card.panel-card--programs {
    grid-column: 1;
}

.panel-card.panel-card--calendar {
    grid-column: auto;
}

.informativo-panels {
    display: grid;
    gap: clamp(20px, 3vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.informativo-panels--single {
    grid-template-columns: minmax(0, 1fr);
}

.informativo-downloads__header h3 {
    margin: 0 0 4px;
    font-size: 1.12rem;
}

.informativo-downloads__header p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.5;
}

.informativo-downloads__cta {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
}

.events-board {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.06) 0%, rgba(225, 29, 72, 0.08) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: clamp(18px, 3vw, 28px);
    display: grid;
    gap: clamp(16px, 2.4vw, 24px);
}

.events-board__header h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    color: #0f172a;
}

.events-board__header p {
    margin: 6px 0 0;
    color: #1f2937;
    line-height: 1.5;
}

.events-feedback {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 0.95rem;
}

.events-feedback--info {
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.events-feedback--sucesso {
    background: rgba(21, 128, 61, 0.14);
    border: 1px solid rgba(21, 128, 61, 0.24);
    color: #166534;
}

.events-feedback--erro {
    background: rgba(225, 29, 72, 0.14);
    border: 1px solid rgba(225, 29, 72, 0.22);
    color: #9f1239;
}

.events-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.events-list__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.events-list__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-weight: 700;
    padding: 12px 0;
}

.events-list__day {
    font-size: 1.4rem;
    line-height: 1;
}

.events-list__month {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.events-list__details h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #0f172a;
}

.events-list__meta {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #4b5563;
}

.events-list__details p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.events-list__link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #e11923;
    text-decoration: none;
}

.events-list__link:hover,
.events-list__link:focus {
    text-decoration: underline;
}

.events-empty {
    margin: 0;
    color: #4b5563;
    font-size: 0.98rem;
}

.events-archive {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 12px;
}

.events-archive summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
}

.events-archive__list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 0.92rem;
}

.events-archive__list li {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.events-form {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px dashed rgba(225, 29, 72, 0.36);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.events-form h4 {
    margin: 0;
    font-size: 1.02rem;
    color: #0f172a;
}

.events-form__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-form label {
    display: grid;
    gap: 6px;
    font-size: 0.92rem;
    color: #1f2937;
}

.events-form input,
.events-form textarea {
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.events-form textarea {
    resize: vertical;
}

.events-form__full {
    display: grid;
    gap: 6px;
}

.events-form__submit {
    justify-self: flex-start;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: #e11923;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.events-form__submit:hover,
.events-form__submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.32);
}

.events-management {
    display: grid;
    gap: clamp(24px, 3vw, 32px);
    margin-top: clamp(24px, 4vw, 40px);
}

.events-admin {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px dashed rgba(15, 23, 42, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
}

.events-admin__hint {
    margin: 0;
    color: #4b5563;
    font-size: 0.93rem;
}

.events-admin__list {
    display: grid;
    gap: 18px;
}

.events-admin__item {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
}

.events-admin__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-admin__item label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: #1f2937;
}

.events-admin__item input,
.events-admin__item textarea {
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    padding: 9px 11px;
    font: inherit;
}

.events-admin__description {
    display: grid;
    gap: 6px;
}

.events-admin__actions {
    display: flex;
    justify-content: flex-end;
}

.events-admin__save {
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.events-admin__save:hover,
.events-admin__save:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.events-admin__remove {
    display: flex;
    justify-content: flex-end;
}

.events-admin__remove button {
    border: none;
    background: transparent;
    color: #b11318;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.events-admin__remove button:hover,
.events-admin__remove button:focus-visible {
    text-decoration: underline;
}

.events-passcode {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px dashed rgba(15, 23, 42, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.events-passcode label {
    font-weight: 600;
    color: #0f172a;
}

.events-passcode__controls {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.events-passcode input {
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.events-passcode button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.events-passcode button:hover,
.events-passcode button:focus-visible {
    background: #111c36;
}

.events-passcode__hint {
    margin: 0;
    font-size: 0.85rem;
    color: #4b5563;
}

.panel-card {
    background: #fff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.compare-card {
    overflow-x: auto;
}

.compare-card::-webkit-scrollbar {
    height: 8px;
}

.compare-card::-webkit-scrollbar-track {
    background: transparent;
}

.compare-card::-webkit-scrollbar-thumb {
    background-color: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
}

.compare-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    min-width: 260px;
}

.compare-grid-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-grid-column .select-label {
    font-weight: 600;
    color: #1f2937;
}

.panel-card ul {
    margin-left: 18px;
    line-height: 1.6;
}

.panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.panel-card .panel-list {
    margin: 0;
    padding: 0;
}

.panel-list li {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 18px 20px;
    line-height: 1.6;
    color: #1f2937;
}

.panel-list strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.panel-card--programs p {
    margin: 0;
    color: #374151;
}

.programa-admin-form {
    margin-top: 12px;
}

.programa-admin-remove {
    padding: 10px 14px;
    background: rgba(225, 25, 35, 0.08);
    border: 1px solid rgba(225, 25, 35, 0.22);
    color: #b11318;
    font-weight: 600;
    cursor: pointer;
}

.programa-admin-create {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.programa-admin-create h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #0f172a;
}

.programa-admin-create label {
    font-weight: 600;
    color: #1f2937;
}

.programa-admin-create input,
.programa-admin-create textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.programa-admin-create textarea {
    resize: vertical;
}

.programa-admin-create .resource-pill {
    justify-self: flex-start;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.resource-grid--calendar {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.resource-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.04);
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.resource-pill--highlight {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(225, 25, 35, 0.2);
    color: #b11318;
    font-weight: 600;
}

.resource-pill:hover,
.resource-pill:focus {
    background: rgba(225, 25, 35, 0.08);
    border-color: rgba(225, 25, 35, 0.14);
    transform: translateY(-1px);
}

.workflow-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.workflow-kpi-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    padding: 16px 18px;
    display: grid;
    gap: 8px;
}

.workflow-kpi-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.workflow-kpi-card strong {
    font-size: 1.8rem;
    color: #0f172a;
    line-height: 1;
}

.workflow-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.workflow-tab {
    border: 1px solid rgba(15, 23, 42, 0.16);
    background: #fff;
    color: #1f2937;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
}

.workflow-tab.is-active {
    background: #e11923;
    color: #fff;
    border-color: #e11923;
}

.workflow-tab-panel {
    display: none;
}

.workflow-tab-panel.is-active {
    display: block;
}

.workflow-card-list {
    display: grid;
    gap: 14px;
}

.workflow-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    padding: 16px 18px;
    display: grid;
    gap: 10px;
}

.workflow-card--historico {
    background: rgba(255, 255, 255, 0.92);
}

.workflow-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.workflow-card__head h4 {
    margin: 0;
    color: #0f172a;
}

.workflow-card__head p {
    margin: 4px 0 0;
    color: #4b5563;
}

.workflow-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 10px;
    background: rgba(225, 25, 35, 0.12);
    color: #b11318;
    white-space: nowrap;
}

.workflow-inline-form {
    display: grid;
    gap: 10px;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.workflow-inline-form label {
    font-weight: 600;
    color: #1f2937;
}

.workflow-inline-form textarea,
.workflow-inline-form input,
.workflow-inline-form select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.workflow-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.workflow-btn-neutral {
    background: #4b5563 !important;
}

.workflow-btn-warning {
    background: #8c6a00 !important;
}

.workflow-radios {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .leadership-panels {
        grid-template-columns: minmax(0, 1fr);
    }

    .leadership-side-panels {
        grid-template-columns: minmax(0, 1fr);
    }

    .events-list__item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .calendar-hero {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 40px;
    }

    .calendar-hero__viewer iframe {
        min-height: 360px;
    }
}

@media (max-width: 860px) {
    .leadership-content .panel-card h2 {
        text-align: center;
    }

    .leadership-panels {
        grid-template-columns: minmax(0, 1fr);
    }

    .panel-card.panel-card--resources,
    .panel-card.panel-card--actions,
    .panel-card.panel-card--programs,
    .panel-card.panel-card--calendar {
        grid-column: auto;
    }

    .informativo-panels {
        grid-template-columns: 1fr;
    }

    .events-list__item {
        grid-template-columns: 1fr;
    }

    .events-list__date {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 14px;
    }

    .events-list__day {
        font-size: 1.2rem;
    }

    .events-list__month {
        font-size: 0.9rem;
    }

    .events-form__grid {
        grid-template-columns: 1fr;
    }

    .events-passcode__controls {
        grid-template-columns: 1fr;
    }

    .events-admin__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .leadership-content .panel-card h2 {
        text-align: center;
    }

    .leadership-panels {
        grid-template-columns: 1fr;
    }

    .panel-card.panel-card--resources,
    .panel-card.panel-card--actions,
    .panel-card.panel-card--programs,
    .panel-card.panel-card--calendar {
        grid-column: span 1;
    }

    .panel-list li {
        padding: 16px;
    }

    .events-board {
        padding: 16px;
    }

    .calendar-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .calendar-hero__viewer iframe {
        min-height: 300px;
    }
}



.resource-pill[aria-disabled="true"] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
}

.panel-note {
    margin-top: 18px;
    font-size: 0.95rem;
    color: #4b5563;
}

.feedz-content {
    padding-top: clamp(48px, 6vw, 96px);
}

.feedz-highlight {
    background: rgba(0, 52, 89, 0.08);
    border: 1px solid rgba(0, 52, 89, 0.18);
    border-radius: 16px;
    padding: 16px 20px;
    display: grid;
    gap: 8px;
    color: #0f172a;
}

.feedz-highlight strong {
    font-size: 0.95rem;
}

.feedz-cta {
    margin-top: clamp(48px, 6vw, 72px);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feedz-cta__card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: grid;
    gap: 14px;
}

.feedz-cta__card h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #0f172a;
}

.feedz-cta__card ul {
    margin: 0 0 0 18px;
    line-height: 1.6;
    color: #1f2937;
}

.feedz-cta__card p {
    margin: 0;
    line-height: 1.6;
    color: #1f2937;
}

.support-topics {
    display: grid;
    gap: 40px; /* aumenta o espaçamento entre os articles */
    margin-top: 40px; /* separa a section dos articles */
    margin-bottom: 40px;
}

.support-topic-group {
    display: grid;
    gap: 32px; /* aumenta o espaçamento entre header e articles */
    margin-bottom: clamp(40px, 6vw, 80px);
    scroll-margin-top: 120px;
}

.support-topic-group__header {
    display: grid;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.support-topic-group__header h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #0f172a;
    text-align: center;
}

.support-topic-group__header p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    text-align: inherit;
}

.support-topic--standalone,
.support-topic {
    max-width: 100%;
    width: 100%;
}

.support-topic {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.support-topic--highlight {
    background: rgba(225, 29, 72, 0.12);
    border-color: rgba(225, 29, 72, 0.24);
}

.support-topic h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2.6vw, 1.5rem);
    color: #0f172a;
}

.support-topic p {
    margin: 0;
    line-height: 1.65;
    color: #374151;
}

.support-topic ul {
    margin: 0 0 0 18px;
    color: #1f2937;
    line-height: 1.6;
}

.support-topic a {
    color: #e11923;
    font-weight: 600;
    text-decoration: none;
}

.support-topic a:hover,
.support-topic a:focus {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section.hero-leadership,
    .hero-section.hero-feedz,
    .hero-section.hero-talent-referral {
        grid-template-columns: 1fr;
        text-align: center;
        padding: clamp(28px, 10vw, 60px);
    }

    .hero-section.hero-leadership .hero-copy,
    .hero-section.hero-feedz .hero-copy,
    .hero-section.hero-talent-referral .hero-copy {
        align-items: center;
        text-align: center;
    }

    .hero-section.hero-leadership .hero-copy p {
        text-align: justify;
    }

    .hero-section .hero-media {
        order: -1;
    }

    .hero-section.hero-leadership .hero-media {
        order: 1;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-section.hero-leadership .hero-actions .hero-action {
        max-width: 260px;
        width: 100%;
        align-self: center;
    }

    .hero-section.hero-feedz .hero-actions .hero-action {
        max-width: 220px;
        width: 100%;
        align-self: center;
    }

    .leadership-overview,
    .leadership-panels,
    .resource-grid,
    .feedz-cta,
    .leadership-indicators {
        grid-template-columns: 1fr;
    }

    .leadership-offboarding .offboarding-header {
        text-align: center;
        align-items: center;
    }

    .leadership-offboarding .offboarding-header h2 {
        text-align: center;
    }

    .leadership-offboarding .offboarding-header p {
        text-align: justify;
        margin-bottom: 16px;
    }

    .birthday-dashboard {
        grid-template-columns: 1fr;
    }

    .birthday-panel {
        padding: clamp(22px, 6vw, 28px);
    }

    .birthday-filter-form .form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .birthday-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .birthday-filter-actions button {
        width: 100%;
    }

    .support-topic-group__header {
        text-align: center;
        justify-items: center;
    }

    .support-return {
        justify-content: center;
    }
}


.support-return {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(24px, 4vw, 48px);
}

.support-return__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--madesa-red);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-return__link:hover,
.support-return__link:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(225, 25, 35, 0.2);
}

.birthday-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: clamp(24px, 5vw, 36px);
    margin-bottom: clamp(48px, 6vw, 72px);
}

.birthday-admin {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(24px, 5vw, 36px);
}

.birthday-panel {
    background: #fff;
    border-radius: 22px;
    padding: clamp(28px, 4vw, 36px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.birthday-panel h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #0f172a;
}

.birthday-filter-form .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.birthday-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

.birthday-filter-actions button,
.birthday-passcode-form button,
.birthday-upload-form button {
    padding: 12px 26px;
    border-radius: 999px;
    border: none;
    background: #e11923;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.birthday-filter-actions button:hover,
.birthday-filter-actions button:focus,
.birthday-passcode-form button:hover,
.birthday-passcode-form button:focus,
.birthday-upload-form button:hover,
.birthday-upload-form button:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(225, 25, 35, 0.26);
}

.birthday-return {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.birthday-return .support-return__link {
    width: 100%;
    justify-content: center;
}

.link-reset {
    font-weight: 600;
    color: #e11923;
}

.link-reset:hover,
.link-reset:focus {
    text-decoration: underline;
}

.birthday-metadata {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.birthday-summary {
    font-weight: 600;
    color: #0f172a;
}

.birthday-empty {
    text-align: center;
    padding: 24px 0;
    font-weight: 500;
    color: #475569;
}

.birthday-table-wrapper {
    overflow-x: auto;
}

.birthday-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.birthday-table th,
.birthday-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.birthday-table thead th {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.02);
}

.birthday-table tbody tr:hover {
    background: rgba(15, 23, 42, 0.04);
}

.birthday-passcode-form,
.birthday-upload-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.birthday-passcode-form input[type="password"],
.birthday-upload-form input[type="file"] {
    font: inherit;
    padding: 14px 16px;
    border-radius: 12px;
}

.birthday-passcode-form input[type="password"] {
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #fff;
}

.birthday-passcode-form input[type="password"]:focus {
    border-color: #e11923;
    box-shadow: 0 0 0 3px rgba(225, 25, 35, 0.18);
    outline: none;
}

.birthday-upload-form input[type="file"] {
    border: 1px dashed rgba(15, 23, 42, 0.22);
    background: rgba(15, 23, 42, 0.02);
}

.birthday-upload-form small {
    color: #4b5563;
    line-height: 1.5;
}

.birthday-alert {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.birthday-alert.erro {
    background: rgba(225, 29, 72, 0.14);
    border: 1px solid rgba(225, 29, 72, 0.28);
    color: #9f1239;
}

.birthday-upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.birthday-upload-header h2 {
    margin: 0;
}

.leadership-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.indicator-card {
    background: #fff;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.indicator-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pill {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-pill.positivo {
    background: rgba(34, 197, 94, 0.16);
    color: #166534;
}

.status-pill.neutro {
    background: rgba(251, 191, 36, 0.2);
    color: #b45309;
}

.status-pill.alerta {
    background: rgba(225, 29, 72, 0.16);
    color: #be123c;
}

.leadership-offboarding {
    background: #fff;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.1);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(32px, 6vw, 60px);
}

.offboarding-header {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.management-trigger {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(225, 25, 35, 0.12);
    color: #7c141a;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(225, 25, 35, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.management-trigger:hover,
.management-trigger:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(225, 25, 35, 0.6);
    box-shadow: 0 12px 22px rgba(225, 25, 35, 0.2);
    outline: none;
}

.offboarding-management {
    margin-top: clamp(32px, 6vw, 60px);
    padding: clamp(24px, 4vw, 40px);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
    display: grid;
    gap: 24px;
}

.management-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.management-passcode-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.management-revoke-form {
    display: flex;
}

.management-passcode-form input[type="password"] {
    flex: 1 1 240px;
    min-width: 180px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    font: inherit;
}

.management-passcode-form input[type="password"]:focus {
    border-color: #e11923;
    box-shadow: 0 0 0 3px rgba(225, 25, 35, 0.16);
    outline: none;
}

.management-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 999px;
    padding: 11px 24px;
    font-weight: 600;
    background: #e11923;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.management-cta:hover,
.management-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(225, 25, 35, 0.25);
    outline: none;
}

.management-cta.ghost {
    background: transparent;
    color: #7c141a;
    border: 1px solid rgba(124, 20, 26, 0.4);
    box-shadow: none;
}

.management-alert {
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 600;
}

.management-alert.sucesso {
    background: rgba(34, 197, 94, 0.15);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.management-alert.erro {
    background: rgba(225, 25, 35, 0.12);
    color: #7c141a;
    border: 1px solid rgba(225, 25, 35, 0.3);
}

.management-empty {
    margin: 12px 0 0;
    color: #475467;
}

.management-table-wrapper {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.management-table th,
.management-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
}

.management-table thead {
    background: rgba(15, 23, 42, 0.04);
    font-weight: 600;
    color: #0f172a;
}

.management-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.02);
}

.management-note {
    font-size: 0.9rem;
    color: #475467;
}

.offboarding-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: clamp(28px, 4vw, 42px);
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label,
.form-field legend {
    font-weight: 600;
    color: #111827;
}

fieldset.form-field {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    padding: 18px 22px 22px;
    gap: 18px;
}

fieldset.form-field legend {
    margin-left: -4px;
    padding: 0 6px;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    font: inherit;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #e11923;
    box-shadow: 0 0 0 3px rgba(225, 25, 35, 0.18);
    outline: none;
}

.form-field textarea {
    resize: vertical;
}

.form-field .form-hint {
    margin: 6px 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.form-field .form-label {
    font-weight: 600;
    color: #111827;
}

.form-field--checkboxes {
    gap: 12px;
}

.filter-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.03);
}

.filter-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-weight: 500;
    color: #111827;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-checkbox span {
    cursor: pointer;
}

.filter-checkbox:hover,
.filter-checkbox:focus-within {
    border-color: rgba(225, 25, 35, 0.4);
    background: rgba(225, 25, 35, 0.08);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio-group label:hover,
.radio-group label:focus-within {
    border-color: #e11923;
    background-color: rgba(225, 25, 35, 0.08);
}

.radio-group input[type="radio"] {
    accent-color: #e11923;
}

.offboarding-submit {
    align-self: flex-start;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: #e11923;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offboarding-submit:hover,
.offboarding-submit:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(225, 25, 35, 0.26);
}

.offboarding-guidelines {
    background: rgba(15, 23, 42, 0.04);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    height: fit-content;
    width: 100%;
}

.offboarding-guidelines ul {
    margin-left: 18px;
    line-height: 1.6;
}

.leadership-offboarding-preview .panel-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.leadership-offboarding-preview .hero-actions {
    flex-wrap: wrap;
}

.leadership-offboarding-preview .hero-action.ghost {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.18);
}

.leadership-offboarding-preview .hero-action.ghost:hover,
.leadership-offboarding-preview .hero-action.ghost:focus {
    background-color: rgba(15, 23, 42, 0.08);
}

@media (max-width: 1100px) {
    .hero-section.hero-leadership {
        grid-template-columns: 1fr;
        text-align: center;
    }


@media (max-width: 768px) {
    .management-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .management-passcode-form,
    .management-revoke-form {
        width: 100%;
    }

    .management-passcode-form input[type="password"] {
        flex-basis: 100%;
    }

    .management-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .management-table {
        min-width: 520px;
    }
}
    .hero-section.hero-feedz {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .birthday-dashboard {
        grid-template-columns: 1fr;
    }

    .hero-section.hero-leadership h1,
    .hero-section.hero-feedz h1,
    .hero-section.hero-feedz p {
        text-align: center;
    }

    .hero-section.hero-leadership p {
        text-align: justify;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-section.hero-leadership .hero-media img {
        max-height: 340px;
    }

    .hero-section.hero-feedz .hero-media img {
        max-height: 340px;
    }
}

@media (max-width: 920px) {
    .leadership-overview {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .leadership-card.focus {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .leadership-content {
        padding: 48px 20px 96px;
    }

    .leadership-content section {
        margin-bottom: 48px;
    }

    .panel-card,
    .leadership-card,
    .indicator-card {
        padding: 22px;
    }

    .birthday-table {
        min-width: 100%;
    }

    .birthday-table-wrapper {
        overflow-x: visible;
    }

    .birthday-table thead {
        display: none;
    }

    .birthday-table tbody {
        display: grid;
        gap: 16px;
    }

    .birthday-table tbody tr {
        display: block;
        padding: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.02);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    }

    .birthday-table tbody tr:hover {
        background: rgba(15, 23, 42, 0.02);
    }

    .birthday-table td {
        display: grid;
        gap: 4px;
        padding: 6px 0;
        border: none;
    }

    .birthday-table td::before {
        content: attr(data-label);
        font-size: 0.78rem;
        font-weight: 600;
        color: #0f172a;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

/* Show more button */
.birthday-show-more-btn {
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    background: #e11923;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.birthday-show-more-btn:hover,
.birthday-show-more-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(225, 25, 35, 0.26);
}
