/*  Articles */

.post-card .card-image {
    aspect-ratio: 0.9375;
}
.post-card .card-image img {
    width: 100%;
    height: 100%;
    background-color: white;
    object-fit: cover;
}
.post-card .title {
    font-size: 2rem;
    letter-spacing: normal;
}
.post-card .card-image::after {
    content: '';
    position: absolute;
    inset: 60% 0 0;
    background: linear-gradient(to bottom, rgba(217, 217, 217, 0), rgba(132, 133, 147, 0.42) 33%, #0f1333);
}
.post-card .card-date {
    padding: 0.25rem 0.75rem;
    font-size: .75rem;
    letter-spacing: 0.5%;
}
.post-card .card-body {
    background-color: white;
    color: var(--wp--preset--color--color-2);
    transition: background-color 0.5s, color 0.5s;
}
.post-card:hover .card-body {
    background-color: var(--wp--preset--color--color-2);
    color: white;
}


/* Solutions */

.solution-card .card-image {
    aspect-ratio: 2;
}
.solution-card .card-image img {
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--color-2);
    object-fit: cover;
}
.solution-card .taxonomy {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--wp--preset--color--color-1);
    border-radius: 5rem;
    color: var(--wp--preset--color--color-1);
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}
.solution-card .card-body {
    background-color: white;
    color: var(--wp--preset--color--color-2);
    transition: background-color 0.5s, color 0.5s;
}


/* Contrats */

.contract-card ul li {
    position: relative;
    padding-bottom: 1em;
    padding-left: 30px;
    font-size: var(--wp--preset--font-size--small);
}
.contract-card ul li::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
    background-color: currentColor;
    vertical-align: text-bottom;
    mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='currentColor'%3E%3Cg %3E%3Cpath d='M0 10C0 4.477 4.477 0 10 0C15.523 0 20 4.477 20 10C20 15.523 15.523 20 10 20C4.477 20 0 15.523 0 10ZM13.707 8.707C13.8892 8.5184 13.99 8.2658 13.9877 8.0036C13.9854 7.7414 13.8802 7.49059 13.6948 7.30518C13.5094 7.11977 13.2586 7.0146 12.9964 7.01233C12.7342 7.01005 12.4816 7.11084 12.293 7.293L9 10.586L7.707 9.293C7.5184 9.11084 7.2658 9.01005 7.0036 9.01233C6.7414 9.0146 6.49059 9.11977 6.30518 9.30518C6.11977 9.49059 6.0146 9.7414 6.01233 10.0036C6.01005 10.2658 6.11084 10.5184 6.293 10.707L8.293 12.707C8.48053 12.8945 8.73484 12.9998 9 12.9998C9.26516 12.9998 9.51947 12.8945 9.707 12.707L13.707 8.707Z'/%3E%3C/g%3E%3C/svg%3E");

}


/* Services */

.service-card .card-image {
    aspect-ratio: 1.7;
}
.service-card .card-image img {
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--color-2);
    object-fit: cover;
}
.service-card .card-body {
    background-color: var(--wp--preset--color--color-2);
    color: white;
}
.service-card .card-body h3 {
    letter-spacing: normal;
}