.its-related-articles {
    width: 100%;
}

.its-related-articles__title {
    margin: 0 0 18px;
}

.its-related-articles__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}

.its-related-articles__card {
    display: flex;
    flex-direction: column;
    flex: 0 0 295px;
    width: 295px;
    max-width: 295px;
    gap: 10px;
    align-items: flex-start;
}

.its-related-articles__image {
    display: block;
    width: 100%;
    max-width: 295px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.its-related-articles__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.its-related-articles__meta {
    margin: 0;
    font-size: 12px;
    color: #4a5568;
}

.its-related-articles__card-title {
    margin: 0;
    font-size: 18px;
}

.its-related-articles__card-title a {
    color: inherit;
    text-decoration: none;
}

.its-related-articles__card-title a:hover {
    text-decoration: underline;
}

.its-related-articles__excerpt {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #2d3748;
    flex: 1 1 auto;
}

.its-related-articles__cta {
    text-align: center;
    align-self: flex-start;
}

@media (max-width: 900px) {
    .its-related-articles__card {
        flex: 0 0 295px;
        width: 295px;
        max-width: 295px;
    }
}

@media (max-width: 600px) {
    .its-related-articles__list {
        gap: 20px;
    }

    .its-related-articles__card {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .its-related-articles__image {
        max-width: 100%;
    }
}
