﻿.promotions_wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promotions_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
}

.promotions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.promotions_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promotions_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promotions_title_text {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.promotions_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.promotions_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--dark);
    border-radius: 8px;
}

.promotions_image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .promotions_image img {
        width: 100%;
        max-width: 600px;
        height: auto;
        display: block;
        border-radius: 4px;
    }

.promotions_actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promotions_actions_link {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
    text-decoration: none;
    background-color: var(--dark);
    border: 2px solid var(--light);
    border-radius: 4px;
}

    .promotions_actions_link:focus,
    .promotions_actions_link:active {
        color: var(--dark);
        background-color: var(--primary-green);
        border-color: transparent;
        transition: 0.2s ease-out;
    }

    @media only screen and (min-width: 600px) {
        .promotions_card {
            width: calc(50% - 4px);
        }
    }

    @media only screen and (min-width: 1200px) {
        .promotions_actions_link:hover {
            color: var(--dark);
            background-color: var(--primary-green);
            border-color: transparent;
            transition: 0.2s ease-in-out;
        }
    }
