﻿.collection-area {
    position: relative;
    height: 245px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

.collection-area-image, .collection-area-image img {
    height: 100%;
    object-fit: cover;
    object-position: 0 -36px;
}

    .collection-area-image img {
        transform: scale(2);
    }

.collection-area-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 36px;
}

.collection-area-image {
    position: relative;
}

    .collection-area-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000099;
    }

.collection-area-title {
    font-family: Inter;
    font-weight: 300;
    font-size: 20.85px;
    line-height: 30.38px;
    letter-spacing: -0.54px;
    text-align: center;
    color: #FFFFFF;
}

.collection-area-link a {
    display: flex;
    align-items: center;
    column-gap: 13px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
}

    .collection-area-link a svg {
        font-size: 18px;
    }

        .collection-area-link a svg path {
            fill: #D1000F;
        }
