.editorial-banner-image-container img {
    display: block;
    position: relative;
    width: 100%;
}
.editorial-banner-container {
    position: relative;
    height: auto;
}
.editorial-banner-image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}
.editorial-banner-text-container {
    display: flex;
    gap: 0;
    min-height: 500px;
    height: 100%;
    position: relative;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    z-index: 2;
    padding: 64px 72px;
    box-sizing: border-box;
    max-width: 856px;
}
.editorial-banner-description {
    color: #ffffff;
    font-family: var(--Font-Playfair);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}
.editorial-banner-gradient {
    position: absolute;
    transition: all 0.5s ease;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.editorial-banner-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(55deg, rgba(0, 0, 0, 0.8) 28.11%, rgba(0, 74, 173, 0.00) 71.13%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.editorial-authors-container {
    padding: 60px 0 80px 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 80px;
}
.editorial-card-img-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
}
.editorial-card-img-container::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}
.editorial-card-img-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
}
.editorial-card-title,.editorial-card-description {
    color: #000000;
    text-align: center;
}
.editorial-card a {
    text-decoration: none;
}
.editorial-card-cta {
    display: inline;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    width: 100%;
    line-height: 150%;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}
.editorial-card {
    font-family: var(--Font-Inter);
}
.editorial-card a:hover .editorial-card-cta {
    border-bottom: 1px solid #000;
}
.editorial-card-title {
    font-size: 18px;
    font-family: var(--Font-Inter);
    font-weight: 700;
    margin: 10px 0;
}
.editorial-card-description {
    display: block;
    font-size: 14px;
    font-family: var(--Font-Inter);
    line-height: 150%;
}
.editorial-card-cta-container {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin: 16px auto 0;
}

@media screen and (max-width: 1000px) {
    .editorial-authors-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 486px) {
    .editorial-authors-container {
        grid-template-columns: 1fr;
    }
}