/**
 * Shortcode [gas_activite_vedette]
 * Layout : image à gauche, contenu à droite, fond sombre
 * Dépend de gas-design-tokens.css et gas-buttons.css
 */

/* =============================================
   CONTAINER
   ============================================= */

.gas-activite-vedette {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--gas-neutral-900);
    color: var(--gas-white);
    border-radius: var(--gas-radius-l);
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

/* =============================================
   IMAGE
   ============================================= */

.gas-activite-vedette__image {
    position: relative;
    min-height: 320px;
}

.gas-activite-vedette__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   CONTENT
   ============================================= */

.gas-activite-vedette__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--gas-space-2xl) var(--gas-space-xl);
    gap: var(--gas-space-xs);
}

/* Accent heading (type + accès) */
.gas-activite-vedette__accent {
    margin: 0;
    font-size: var(--gas-text-m);
    color: var(--gas-neutral-300);
    font-style: italic;
}

/* Meta (date + prix) */
.gas-activite-vedette__meta {
    margin: 0;
    font-size: var(--gas-text-s);
    color: var(--gas-neutral-400);
}

/* Title */
.gas-activite-vedette__title {
    margin: var(--gas-space-xs) 0 0;
    font-size: var(--gas-text-2xl);
    font-weight: var(--gas-weight-bold);
    line-height: 1.2;
    color: var(--gas-white);
}

/* Description */
.gas-activite-vedette__description {
    margin: var(--gas-space-xs) 0 0;
    font-size: var(--gas-text-m);
    color: var(--gas-neutral-300);
    line-height: 1.5;
}

/* CTA principal */
.gas-activite-vedette__actions {
    margin-top: var(--gas-space-l);
}

.gas-activite-vedette__actions .gas-button--primary {
    background-color: var(--gas-accent);
    border-color: var(--gas-accent);
    font-size: var(--gas-text-m);
    padding: var(--gas-button-l-py) var(--gas-button-l-px);
}

.gas-activite-vedette__actions .gas-button--primary:hover {
    background-color: var(--gas-accent-dark);
    border-color: var(--gas-accent-dark);
}

/* Lien secondaire (voir toutes les activités) */
.gas-activite-vedette__footer {
    margin-top: var(--gas-space-l);
}

.gas-activite-vedette__footer .gas-button--outline {
    color: var(--gas-accent);
    border-color: var(--gas-accent);
    font-size: var(--gas-text-s);
}

.gas-activite-vedette__footer .gas-button--outline:hover {
    background-color: hsla(var(--gas-accent-h), var(--gas-accent-s), var(--gas-accent-l), 0.1);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .gas-activite-vedette {
        grid-template-columns: 1fr;
    }

    .gas-activite-vedette__image {
        min-height: 220px;
    }

    .gas-activite-vedette__content {
        padding: var(--gas-space-xl) var(--gas-space-l);
    }

    .gas-activite-vedette__title {
        font-size: var(--gas-text-xl);
    }
}
