.background {
    position: absolute;
    top: 10%;
    left: 0;
    max-width: 100%;
    height: 350px;
    z-index: -1;
    opacity: 0.05;
}

.background2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 100%;
    height: 350px;
    z-index: -1;
    opacity: 0.05;
}

.accueil {
    max-width: 1320px;
    margin: calc(var(--header-height) + 20px) auto 35px auto;
    padding: 15px 0 35px 0;
    position: relative;
}

.accueil h1 {
    font-size: clamp(22px, 1.5vw, 28px);
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
    background-color: var(--header-bg-color);
    color: var(--header-font-color);
    padding: 10px;
    border-radius: 5px;
    width: 96%;
    margin: 0 auto;
}

.accueil .articles-title {
    font-size: clamp(24px, 3vw, 30px);
    font-family: var(--title-font-family);
    font-weight: 900;
    text-align: center;
    width: 96%;
    background-color: var(--title-articles-bg-color);
    color: var(--header-font-color);
    padding: 7px;
    border-radius: 5px;
    margin: 25px auto 0 auto;
}

.accueil .versets {
    display: flex;
    flex-wrap: wrap;
    margin: 15px auto 0 auto;
    justify-content: center;
    gap: 20px;
    border-radius: 5px;
    padding: 10px;
    width: 97%;
    position: relative;
}

.accueil .versets .text {
    font-size: clamp(14px, 3vw, 17px);
    font-weight: 700;
    text-align: center;
    width: 100%;
    color: var(--link-color);
    border-radius: 5px;
    width: 100%;
    border: solid 1px var(--link-color);
    padding: 10px;
    position: relative;
}

.accueil .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 10px 0 20px 0;
    position: relative;
}

.accueil .cards .card {
    width: 32%;
    padding: 20px;
    position: relative;
}

.accueil .cards .card h2 {
    font-size: clamp(14px, 3vw, 17px);
    font-weight: 600;
    margin: 7px 0;
    text-align: justify;
}

.accueil .cards .card .link {
    text-decoration: none;
    color: var(--color-black);
}

.accueil .cards .card .link:hover {
    color: var(--title-color-hover);
}

.accueil .cards .card .meta {
    font-size: clamp(12px, 1.25vw, 13px);
    margin-bottom: 5px;
}

.accueil .cards .card .categories {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--link-color);
    padding: 1px 4px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline;
    font-size: clamp(10px, 1.25vw, 12px);
}

.accueil .cards .card .categories:hover {
    background-color: var(--link-hover-color);
}

.accueil .cards .card p {
    font-size: clamp(11px, 1.25vw, 13px);
}

.accueil .cards .card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 7px;
    border-radius: 5px;
    position: relative;
}

.accueil .cards .card .content {
    font-size: clamp(12px, 1.5vw, 14px);
    position: relative;
}

.accueil .cards .card .views {
    position: absolute;
    top: 235px;
    right: 32px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 900;
    color: var(--color-white);
    background-color: #0000006e;
    padding: 2px 7px;
    border-radius: 5px;
}


@media screen and (max-width: 768px) {
    .accueil .cards .card {
        width: 95%;
    }
}