.link-list {
    width: 100%;
    margin-inline: auto;
    display: flex;
    max-width: 1280px;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .link-list {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .link-list {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .link-list {
        max-width: 1024px;
        gap: 24px;
    }
}

@media (min-width: 1280px) {
    .link-list {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .link-list {
        max-width: 1536px;
    }
}

.link-list__title {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #063073;
}

@media (min-width: 1024px) {
    .link-list__title {
        font-size: 30px;
        line-height: 1.2;
    }
}

.link-list__column-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1024px) {
    .link-list__column-wrapper {
        flex-direction: row;
        gap: 48px;
    }
}

.link-list__column {
    display: flex;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    background-color: #eaf8ff;
    box-sizing: border-box;
    padding: 24px;
}

.link-list__column-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #063073;
}

@media (min-width: 1024px) {
    .link-list__column-title {
        font-size: 20px;
    }
}

.link-list__item-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 64px;
    row-gap: 16px;
}

@media (min-width: 1024px) {
    .link-list__item-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.link-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #059cff;
    text-decoration: none;
    font-size: 14px;
}

@media (min-width: 1024px) {
    .link-list__item {
        font-size: 16px;
    }
}

.link-list__item:hover {
    text-decoration: underline;
}

.link-list__item::after {
    content: "";
    width: 24px;
    height: 24px;
    margin-left: auto;
    background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M9 5l7 7-7 7' stroke='%23059cff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.content-card {
    --brand-blue: #063073;
    --brand-light-blue: rgb(209, 240, 255);

    box-sizing: border-box;
    position: relative;
    background-color: #fff;
    z-index: 10;
    padding-block: 24px;
}

@media (min-width: 1024px) {
    .content-card {
        display: flex;
        align-items: center;
        border-radius: 12px;
        padding-block: 24px;
        padding-inline: 48px;
        gap: 48px;
        border: 1px solid var(--brand-light-blue);
        background-color: #fff !important;
    }
}

.content-card.content-card--alternate {
    background-color: #f3f6fa;
}

@media (max-width: 1023px) {
    .content-card.content-card--alternate::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 100%;
        transform: translateX(-50%);
        background: #f3f6fa;
        z-index: -1;
        pointer-events: none;
    }
}

.content-card.content-card--alternate .content-card__image {
    order: 1;
}

.content-card__image {
    object-fit: cover;
    border-radius: 12px;
    display: block;
    width: 100%;
    height: 260px;
}

@media (min-width: 1024px) {
    .content-card__image {
        width: 50%;
        height: 400px;
    }
}

.content-card__info-wrapper {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .content-card__info-wrapper {
        width: 50%;
        margin-block: 64px;
    }
}

.content-card__title {
    color: var(--brand-blue);
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
}

.content-card__body {
    font-size: 14px;
    line-height: 28px;
    color: var(--brand-blue);
    margin: 0;
}

@media (min-width: 1024px) {
    .content-card__body {
        font-size: 16px;
        line-height: 28px;
    }
}

.content-card__action-button {
    background-color: var(--brand-blue);
    color: white;
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    padding-inline: 16px;
    padding-block: 12px;
    display: block;
    width: fit-content;
    border-radius: 6px;
}

.content-card__action-button:hover {
    opacity: 0.9;
}
