/**
 * APCA Section Header Component
 * Reusable header with blue triangle mark and kicker text
 * 
 * @package APCA_V2
 */

/* Header Container */
.apca-areas-list-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Blue Triangle Mark */
.apca-areas-list-header-mark {
    width: 0;
    height: 0;
    margin-top: 0.15rem;
    border-top: 22px solid var(--color-apca-blue);
    border-right: 22px solid transparent;
    flex-shrink: 0;
}

/* Kicker Text */
.apca-areas-list-kicker {
    font-family: 'Cabrito Sans', sans-serif;
    font-size: clamp(0.78rem, 1vw, 0.95rem);
    font-weight: 400;
    color: #4e4e4e;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding-top: 0.2rem;
    padding-right: 1.5rem;
    border-top: 1px solid #8e8e8e;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .apca-areas-list-header {
        gap: 0.5rem;
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .apca-areas-list-header-mark {
        border-top-width: 18px;
        border-right-width: 18px;
    }

    .apca-areas-list-kicker {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .apca-areas-list-header {
        gap: 0.4rem;
    }

    .apca-areas-list-header-mark {
        border-top-width: 16px;
        border-right-width: 16px;
        margin-top: 0.1rem;
    }
}
