.lan-card-links-list,
.lan-card-links-grid,
.lan-document-downloads-list,
.lan-callout {
    margin-bottom: 40px;
}

.lan-callout {
    --lan-callout-bg: var(--Background-Blue, #EAF3FF);
    --lan-callout-border: var(--dark-blue, #20234A);
    --lan-callout-text: var(--dark-blue, #20234A);
    padding: 20px 24px;
    border: 2px solid var(--lan-callout-border);
    border-radius: 16px;
    background: var(--lan-callout-bg);
    color: var(--lan-callout-text);
}

/* info — blue */
.lan-callout--info {
    --lan-callout-bg: var(--Background-Blue, #EAF3FF);
    --lan-callout-border: var(--dark-blue, #20234A);
    --lan-callout-text: var(--dark-blue, #20234A);
}

/* warning — sandy/amber, matching the site's alert palette */
.lan-callout--warning {
    --lan-callout-bg: var(--Background-sandy, #FFF6D9);
    --lan-callout-border: var(--Text-Alert, #793D0A);
    --lan-callout-text: var(--Text-Alert, #793D0A);
}

/* danger — red */
.lan-callout--danger {
    --lan-callout-bg: var(--Background-Red, #FFEBE8);
    --lan-callout-border: var(--Warning-Red, #AE1A00);
    --lan-callout-text: var(--Warning-Red, #AE1A00);
}

/* success — green */
.lan-callout--success {
    --lan-callout-bg: var(--secondary-green-15, #E5EAE2);
    --lan-callout-border: var(--Primary-Green, #4F7040);
    --lan-callout-text: var(--Primary-Green, #4F7040);
}

.lan-callout__heading {
    margin: 0 0 12px;
    color: inherit;
}

.lan-callout__message {
    margin: 0;
    color: inherit;
}

.lan-callout__message p {
    margin: 0 0 8px;
}

.lan-callout__message p:last-child {
    margin-bottom: 0;
}

.lan-card-links-list__heading,
.lan-card-links-grid__heading,
.lan-document-downloads-list__heading {
    margin: 0;
    font-size: 1.2rem;
    color: #173f34;
    margin-bottom: 10px;
}

.lan-card-links-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lan-card-links-list__item {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--Border-Grey);
    border-left: 10px solid var(--Primary-Teal);
    border-radius: 4px;
    background: var(--Background-Grey);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease, border-left-color 0.2s ease;
    cursor: pointer;
}

.lan-card-links-list__item:hover {
    background-color: var(--Background-Grey-Hover);
}

.lan-card-links-list__item-content {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-right: 30px;
}

.container {
    position: relative;
    align-items: center;
    display: flex;
}

.lan-card-links-list__item-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.lan-card-links-list__item-description {
    font-size: 0.9rem;
    margin: 0;
}

.lan-card-links-list__item-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M4 6.54468L8 10.5447L12 6.54468' stroke='%2320234A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    cursor: pointer;
    display: block;
    height: 26px;
    width: 26px;
    color: transparent;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    transform: rotate(-90deg);
    position: absolute;
    top: -12px;
    right: 10px;
}

.lan-card-links-grid__items {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.lan-card-links-grid__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 112px;
    padding: 14px 20px;
    border: 1px solid #ccd9d3;
    border-left: 10px solid var(--Primary-Green);
    border-radius: 4px;
    background-color: var(--Background-Grey);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease, border-left-color 0.2s ease;
}

.lan-card-links-grid__item-content {
    flex: 1;
    min-width: 0;
}

.lan-card-links-grid__item-title {
    font-weight: bold;
    color: #173f34;
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.lan-card-links-grid__item-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.lan-card-links-grid__item-arrow {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 1.5rem;
    color: #114e3c;
    font-weight: 300;
}

/* .lan-card-links-list__items a {
    color: #114e3c;
} */

.lan-document-downloads-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.lan-document-downloads-list__download-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border: 1px solid #d6e3de;
    border-radius: 4px;
    background: #f5faf8;
    color: #114e3c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.lan-document-downloads-list__download-all:hover {
    background-color: #e8f1ed;
}

.lan-document-downloads-list__download-all::before {
    content: '↓';
}

.lan-document-downloads-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 650px;
}

.lan-document-downloads-list__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--Border-Grey);
    border-radius: 6px;
    background: var(--Background-Grey);
    transition: background-color 0.2s ease;
}

.lan-document-downloads-list__item:hover {
    background-color: var(--Border-Grey);
}

.lan-document-downloads-list__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #d6433f;
}

.lan-document-downloads-list__item-icon svg {
    width: 100%;
    height: 100%;
}

.lan-document-downloads-list__item-content {
    flex: 1;
    min-width: 0;
}

.lan-document-downloads-list__item-title {
    display: block;
    color: var(--Text-Off-Black);
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
    margin-bottom: 4px;
}

.lan-document-downloads-list__item-title:hover {
    text-decoration: underline;
}

.lan-document-downloads-list__item-info {
    font-size: 0.85rem;
    color: #666;
}

.lan-document-downloads-list__item-download-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    color: var(--Text-Off-Black);
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}
