.cards-galley__header{
    text-align: left;
}
.cards-galley__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 350px;
    overflow: hidden;
}
.cards-galley__grid.slick-initialized{
    max-height: 100vh;
    overflow: visible;
}
.cards-galley__card {
    /* background: #FFFFFF; */
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.06); */
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #E8E6D4;
    padding: 20px;
    width: 90vw;
}

.cards-galley__image img {
    display: block;
    width: 150px;
    height: auto;
    border-radius: 8px;
}

.cards-galley__content {
    margin: 20px 0 0 0;
}

.cards-galley__card-title {
    margin: 0 0 15px 0;
    font-weight: 400;
    color: var(--color-text-green);
}

.cards-galley__text {
    color: #18383C;
}

.cards-galley__footnote {
    color: #6B7280;
    font-size: 12px;
    margin-top: 25px;
    color: var(--color-text-green);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Label-Large-Line-Height, 20px);
}

@media (max-width: 768px) {
    .cards-galley__grid { grid-template-columns: 1fr; gap: 16px; }
}


