.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.partner-card {
    display: flex;
}

.partner-texte {
    display: flex;
    flex-direction: column;
    flex-grow: 8;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: normal;
    color: black;
    margin-bottom: 0.75rem;
}

.partner-social {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 2%;
    margin: 10px 0;
}

.partner-logo {
    display: flex;
    justify-content: center;
    flex-grow: 2;
    min-width: 150px;
    user-select: none;
}

.partner-logo img {
    object-fit: contain;
    max-width: 150px;
    max-height: 150px;
}

.contact-link {
    padding: 10px 0;
}

.cover-full {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    user-select: none;
}

.cover-full>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.window {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fright {
    float: right;
}

.article-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.article-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    width: 20%;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.album-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    width: 30%;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.article-main {
    background-color: #ffffff;
    border: 4px;
    box-shadow: 0 2px 5px 0 rgb(0, 0, 0, 0.16), 0 2px 10px 0 rgb(0, 0, 0, 0.12);
    padding: 10px;
}

.article-title {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10px;
    font-style: italic;
    font-size: 30px;
    font-family: "Abnes Regular";
    background-color: #202020;
    border-radius: 15px;
    margin: 0;
    color: red;
}

.article-card-image {
    overflow: hidden;
    height: 20vh;
    margin-bottom: 10px;
}

.article-image>img,
.article-image-suggestion>img,
.article-card-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-image {
    overflow: hidden;
    height: 35vh;
    margin: 5px 15px;
}

.article-image-suggestion {
    overflow: hidden;
    height: 15vh;
}

.article-image>img,
.article-image-suggestion>img,
.article-card-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-contenu {
    padding: 5px 15px;
}

.article-contenu-suggestion {
    padding: 5px 0px;
}

.article-date {
    text-align: right;
    margin: 0;
}

.article-text {
    text-align: justify;
    padding: 5px 0;
}


.container-grid {
    display: grid;
    padding: 0 5%;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: center;
    grid-gap: 10px;
}

.grid-item {
    width: 300px;
    height: 200px;
    position: relative;
    object-fit: cover;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%), 0 2px 15px 0 rgb(0 0 0 / 12%);
}

.card-date {
    text-align: right;
    font-size: 0.9rem;
    font-style: italic;
}

.cross-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-image: url("/images/cross.png");
}

.cross-button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-item.active {
    border-bottom: 2px solid #FF9F00;
    border-radius: 2px;
}

.nav-item.active .nav-link {
    color: #FF9F00 !important;
}

.instagram {
    color: #cd486b;
}

.facebook {
    color: #3b5998;
}

.website {
    color: #6e6e6e;
}

.instagram:hover {
    color: #cd486b;
    filter: brightness(75%);
}

.facebook:hover {
    color: #3b5998;
    filter: brightness(75%);
}

.website:hover {
    color: #6e6e6e;
    filter: brightness(75%);
}

.logo-svg {
    font-size: 40px;
    margin: 0 0.25rem;
}