.assortmentRow {
background: #F3F2EE;
    padding: 64px 0;
}

.assortmentRow__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.assortmentRow__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.assortmentRow__header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.assortmentRow__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7F9138;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0;
}

.assortmentRow__label-line {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.assortmentRow__label-line svg {
    display: block;
    width: 28px;
    height: 2px;
}

.assortmentRow__title {
    color: #18210F;
    font-family: "Satoshi", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin: 0;
}

.assortmentRow__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 12px 24px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid rgba(28, 41, 16, 0.30);
    color: #18210F;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: border-color 0.3s ease;
}

.assortmentRow__button:hover {
    border-radius: 4px;
    background: rgba(24, 33, 15, 0.05);
}

.assortmentRow__button-arrow {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

.assortmentRow__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}

.assortmentRow__card {
    border-radius: 6px;
    border: 1px solid rgba(116, 134, 57, 0.10);
    overflow: hidden;
    background-color: #F5F4EE;
}

.assortmentRow__card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.assortmentRow__image {
    line-height: 0;
    overflow: hidden;
    aspect-ratio: 413 / 272;
    width: 100%;
}

.assortmentRow__photo {
    display: block;
    width: 100%;
    height: 292px;
    object-fit: cover;
}

.assortmentRow__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    flex: 1;
    

}

.assortmentRow__scientific-name {
    color: #748639;
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
}

.assortmentRow__card-title {
    color: #1C2910;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.24px;
    margin: 0;
}

.assortmentRow__excerpt {
    color: rgba(28, 41, 16, 0.55);
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1439px) {
    .assortmentRow__container {
        width: 92%;
        max-width: 1280px;
    }
}

@media (max-width: 1015px) {
    .assortmentRow__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .assortmentRow__title {
        font-size: 36px;
        letter-spacing: -0.36px;
    }

    .assortmentRow__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        max-width: 584px;
        margin: 0 auto;
        width: 100%;
    }

    .assortmentRow__card {
        width: 100%;
        max-width: 414px;
        height: 380px;
        margin: 0 auto;
        border-radius: 8px;
        border: 1px solid rgba(116, 134, 57, 0.10);
    }

    .assortmentRow__image {
        flex: 1;
        min-height: 0;
        aspect-ratio: auto;
    }

    .assortmentRow__photo {
        height: 100%;
    }

    .assortmentRow__content {
        flex: none;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .assortmentRow {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .assortmentRow {
        padding: 40px 0;
    }

    .assortmentRow__title {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .assortmentRow__card {
        max-width: 100%;
    }

    .assortmentRow__card-title {
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .assortmentRow__button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}
