:root {
    /* A La une */
    /* Container */
    --a-la-une-background: #f1f1f1;
    --a-la-une-textbox-opacity: 0.95;
    --a-la-une-textbox-max-width: 650px;

    /* Content */
    --a-la-une-title-font-size: 30px;
    --a-la-une-title-font-weight: 650;
    --a-la-une-title-letter-spacing: 0.02em;
    --a-la-une-title-color: var();
    --a-la-une-title-line-height: 1.1em;
    
    --a-la-une-exerpt-font-size: 1.1em;
    --a-la-une-exerpt-max-lines: 8;
    --a-la-une-exerpt-font-weight: 500;
    --a-la-une-exerpt-letter-spacing: 0.03em;
    --a-la-une-exerpt-color:#404040;
    
    --a-la-une-footer-font-size: 22px;
    --a-la-une-footer-font-weight: 600;
    --a-la-une-footer-letter-spacing: 0.04em;
    --a-la-une-footer-color: var(grey);
}

/** A la une (Première image) */
.a-la-une {
    display: block;
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    text-align: left;
    border: 0.5px solid var(--light-bg);
    font-family: Barlow;
}

.a-la-une img {
    border-radius: var(--radius);
}

.a-la-une .archiprod-featured-thumbnail {
    z-index: 0;
    position: absolute !important;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.a-la-une .content {
    position: absolute !important;
    border-top-right-radius: var(--radius);
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 55%;
    width: 100%;
    max-width: var(--a-la-une-textbox-max-width);
    background: var(--light-bg-rgba);
    text-align: left;
    letter-spacing: 0px;
    padding: 15px;
}

.a-la-une .content .title {
    text-align: left;
    font-size: var(--a-la-une-title-font-size);
    letter-spacing: var(--a-la-une-title-letter-spacing);
    font-weight: var(--a-la-une-title-font-weight);
    color: var(--a-la-une-title-color);
    text-transform: uppercase;
    line-height: var(--a-la-une-title-line-height);
}

.a-la-une .content .exerpt {
    color: var(--a-la-une-exerpt-color);
    font-size: var(--a-la-une-exerpt-font-size);
    font-weight: var(--a-la-une-exerpt-font-weight);
    text-align: justify;
    margin-top: 1em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: var(--a-la-une-exerpt-max-lines);
    line-clamp: var(--a-la-une-exerpt-max-lines);
    margin-bottom: 10px;
    letter-spacing: var(--a-la-une-exerpt-letter-spacing);
}

.a-la-une .content .foot {
    width: 100%;
    display: flex;
    align-items: end;
    flex: 1;
    font-size: var(--a-la-une-footer-font-size);
    font-weight: var(--a-la-une-footer-font-weight);
    letter-spacing: var(--a-la-une-footer-letter-spacing);
    color: var(--a-la-une-footer-color);
}