.link-list {
    width: 100%;
    margin-inline: auto;
    display: flex;
    max-width: 80rem;
    flex-direction: column;
    gap: 1rem;

    @media (width >=40rem) {
        max-width: 40rem;
    }

    @media (width >=48rem) {
        max-width: 48rem;
    }

    @media (width >=4rem) {
        max-width: 64rem;
        gap: 1.5rem;
    }

    @media (width >=80rem) {
        max-width: 80rem;
    }

    @media (width >=96rem) {
        max-width: 96rem;
    }
}

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

    @media (width >=64rem) {
        font-size: 30px;
        line-height: 1.2;
    }
}

.link-list__column-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    @media (width >=64rem) {
        flex-direction: row;
        gap: 3rem;
    }
}

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

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

    @media (width >=64rem) {
        font-size: 20px;
    }
}

.link-list__item-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 4rem;
    row-gap: 1rem;

    @media (width >=64rem) {
        grid-template-columns: 1fr 1fr;
    }
}

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

    @media (width >=64rem) {
        font-size: 16px;
    }

    &:hover {
        text-decoration: underline;
    }

    &::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: hsl(0, 0%, 100%);
    z-index: 10;
    padding-block: 1.5rem;

    @media (width >= 64rem) {
        display: flex;
        align-items: center;
        border-radius: 0.75rem;
        padding-block: 1.5rem;
        padding-inline: 3rem;
        gap: 3rem;
        border: 1px solid var(--brand-light-blue);
        background-color: #fff !important;
    }

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

        @media (width < 64rem) {
            &::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__image {
            order: 1;
        }
    }
}

.content-card__image {
	object-fit: cover;
	border-radius: 0.75rem;
	display: block;
	height: 16rem !important;
	width: 100%;
	
	
	@media (width >= 64rem) {
        width: 50%;
    }
}

.content-card__info-wrapper {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
	
	@media (width >= 64rem) {
        width: 50%;
		margin-block: 4rem;
    }
}

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

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

.content-card__action-button {
    background-color: var(--brand-blue);
    color: white;
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    padding-inline: 1rem;
    padding-block: 0.75rem;
    display: block;
    width: fit-content;
    border-radius: 0.375rem;

    &:hover {
        opacity: 0.9;
    }
}
