.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.symbol-filled {
    font-variation-settings: 'FILL' 1;
}

.bento-card {
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s;
}

.bento-card:hover {
    opacity: 0.88;
}

.step-active {
    border-left: 2px solid #00552c;
}

/* Team bio disclosure (slide down on toggle) */
.team-bio {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.team-bio > div {
    overflow: hidden;
}

.team-card.open .team-bio {
    grid-template-rows: 1fr;
}

.team-chevron {
    transition: transform 0.3s ease;
}

.team-card.open .team-chevron {
    transform: rotate(180deg);
}

.team-toggle {
    cursor: pointer;
    background: none;
    border: none;
}

.team-toggle:focus-visible {
    outline: 2px solid #00552c;
    outline-offset: -2px;
    border-radius: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
    .team-bio,
    .team-chevron {
        transition: none;
    }
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px;
    background: #fcf9f8;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    font-family: "DM Sans", sans-serif;
    color: #1c1b1b;
}

.cookie-consent__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #3f4940;
}

.cookie-consent__text a {
    color: #00552c;
    font-weight: 600;
    text-decoration: none;
}

.cookie-consent__text a:hover {
    opacity: 0.85;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-consent__btn {
    padding: 10px 18px;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
}

.cookie-consent__btn--accept {
    background: #00552c;
    color: #ffffff;
}

.cookie-consent__btn--accept:hover {
    opacity: 0.88;
}

.cookie-consent__btn--decline {
    background: transparent;
    color: #3f4940;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.cookie-consent__btn--decline:hover {
    background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1;
    }
}
