/**
 * Vacature Templates
 * Standalone CSS — geen Tailwind build nodig.
 * Kleuren: oranje #f7892b, donkerblauw #2e2d78, Montserrat font.
 */

/* =============================================
   GEDEELD
   ============================================= */

.vac-page {
    background: #F8FAFC;
    min-height: 100vh;
}

.vac-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vac-container--narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================
   HERO
   ============================================= */

.vac-hero {
    background: linear-gradient(135deg, #2e2d78 0%, #1c1b4e 100%);
    color: #fff;
    padding: 8rem 0 3.5rem;
}

.vac-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.vac-hero__back:hover {
    color: #fff;
}

.vac-hero__back svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.vac-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FDBA74;
    margin: 0 0 0.75rem;
}

.vac-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: #fff;
}

.vac-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.vac-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    line-height: 1;
}

.vac-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.vac-badge--ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.vac-badge--primary {
    background: #f7892b;
    color: #fff;
    font-weight: 700;
}

.vac-badge--light {
    background: #F1F5F9;
    color: #475569;
    border: none;
}

.vac-badge--outline {
    background: #fff8f3;
    color: #c2681a;
    border: 1px solid #FED7AA;
    font-weight: 600;
}

/* =============================================
   LAYOUT
   ============================================= */

.vac-body {
    padding: 3rem 0 5rem;
}

.vac-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .vac-grid {
        grid-template-columns: 1fr 340px;
    }
}

.vac-main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vac-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .vac-sidebar__inner {
        position: sticky;
        top: 7rem;
    }
}

.vac-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =============================================
   CARDS / SECTIES
   ============================================= */

.vac-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07), 0 10px 20px -2px rgba(0,0,0,0.04);
    padding: 2rem;
}

.vac-card__section-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vac-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f7892b, #e67a20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vac-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

.vac-card__section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.vac-card__intro {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

/* WYSIWYG inhoud */
.vac-content {
    color: #334155;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.vac-content ul,
.vac-content ol {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.vac-content li {
    margin-bottom: 0.375rem;
}

.vac-content p {
    margin: 0 0 0.75rem;
}

.vac-content p:last-child {
    margin-bottom: 0;
}

.vac-content strong {
    color: #1E293B;
    font-weight: 600;
}

/* Interesse / CTA card */
.vac-card--cta {
    background: linear-gradient(135deg, #f7892b 0%, #e67a20 100%);
    color: #fff;
}

.vac-card--cta .vac-card__icon {
    background: rgba(255,255,255,0.2);
}

.vac-card--cta .vac-card__section-title {
    color: #fff;
}

.vac-card--cta .vac-content {
    color: rgba(255,255,255,0.92);
}

.vac-card--cta .vac-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vac-card--cta .vac-content strong {
    color: #fff;
}

/* =============================================
   SIDEBAR — SOLLICITEER
   ============================================= */

.vac-apply__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 1.25rem;
}

.vac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.vac-btn svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.vac-btn--primary {
    background: #f7892b;
    color: #fff;
    margin-bottom: 0.75rem;
}

.vac-btn--primary:hover {
    background: #e67a20;
    color: #fff;
    box-shadow: 0 6px 20px rgba(247,137,43,0.4);
    transform: translateY(-1px);
}

.vac-btn--secondary {
    background: #2e2d78;
    color: #fff;
}

.vac-btn--secondary:hover {
    background: #252463;
    color: #fff;
    box-shadow: 0 6px 20px rgba(46,45,120,0.35);
    transform: translateY(-1px);
}

.vac-apply__divider {
    border: none;
    border-top: 1px solid #E2E8F0;
    margin: 1.25rem 0;
}

.vac-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.vac-contact-info__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
}

.vac-contact-info__item svg {
    width: 1rem;
    height: 1rem;
    color: #94A3B8;
    flex-shrink: 0;
}

/* =============================================
   SIDEBAR — DETAILS
   ============================================= */

.vac-details__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 1.25rem;
}

.vac-details__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vac-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vac-detail-row__icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #F1F5F9;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vac-detail-row__icon svg {
    width: 1rem;
    height: 1rem;
    color: #64748B;
}

.vac-detail-row__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94A3B8;
    margin: 0 0 0.125rem;
}

.vac-detail-row__value {
    font-size: 0.875rem;
    color: #334155;
    margin: 0;
}

/* =============================================
   ARCHIVE — HERO
   ============================================= */

.vac-archive-hero {
    background: linear-gradient(135deg, #2e2d78 0%, #1c1b4e 100%);
    color: #fff;
    padding: 8rem 0 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.vac-archive-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FDBA74;
    margin: 0 0 0.75rem;
}

.vac-archive-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
}

.vac-archive-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   ARCHIVE — VACATUREKAART
   ============================================= */

.vac-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vac-list-item {
    display: block;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07), 0 10px 20px -2px rgba(0,0,0,0.04);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
}

.vac-list-item:hover {
    box-shadow: 0 4px 25px -5px rgba(0,0,0,0.1), 0 10px 30px -5px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    color: inherit;
}

.vac-list-item__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.vac-list-item__body {
    flex: 1;
    min-width: 0;
}

.vac-list-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.75rem;
    transition: color 0.2s;
}

.vac-list-item:hover .vac-list-item__title {
    color: #f7892b;
}

.vac-list-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vac-list-item__excerpt {
    font-size: 0.875rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vac-list-item__arrow {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    background: #FFF7ED;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    align-self: center;
}

.vac-list-item__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f7892b;
    transition: color 0.25s;
}

.vac-list-item:hover .vac-list-item__arrow {
    background: #f7892b;
}

.vac-list-item:hover .vac-list-item__arrow svg {
    color: #fff;
}

@media (max-width: 640px) {
    .vac-list-item__arrow {
        display: none;
    }
}

/* =============================================
   ARCHIVE — LEEG
   ============================================= */

.vac-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07), 0 10px 20px -2px rgba(0,0,0,0.04);
}

.vac-empty__icon {
    width: 5rem;
    height: 5rem;
    background: #F1F5F9;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vac-empty__icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #CBD5E1;
}

.vac-empty__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.75rem;
}

.vac-empty__text {
    font-size: 0.9375rem;
    color: #64748B;
    max-width: 28rem;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
