.promotions {
    margin-bottom: 100px;
    .items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 20px;
        margin-top: 80px;
        .item {
            display: flex;
            flex-direction: column;
            align-items: start;
            background: var(--dark-b);
            border-radius: 20px;
            position: relative;
            transition: .2s linear;
            img {
                border-radius: 20px;
                height: 360px;
                object-fit: cover;
            }
            a {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
            }
            .data {
                padding: 10px 20px 30px;
                display: flex;
                flex-direction: column;
                align-items: start;
                h3 {
                    margin: 20px 0 10px;
                    font-weight: 500;
                }
                p {
                    color: var(--white-70);
                    font-size: 16px;
                    &.valid {
                        color: var(--white-50);
                        font-size: 12px;
                        margin-bottom: 5px;
                    }
                }
                .btn {
                    margin-top: 40px;
                    span {
                        height: 46px;
                    }
                    &::after {
                        width: 46px;
                        height: 46px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .promotions {
        .items {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            .item {
                .data {
                    p {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .promotions {
        .items {
            display: flex;
            flex-direction: column;
        }
    }
}
@media screen and (hover: hover) {
    .promotions {
        .items {
            .item:hover {
                transform: translateY(-10px);
                /* box-shadow: 0 0 10px 6px rgba(196, 250, 248, .3); */
                box-shadow: var(--shadow-main);
                .btn {
                    span {
                        background: transparent;
                        color: var(--blue);
                        box-shadow: var(--shadow-main);
                    }
                    &::after {
                        background: transparent;
                        color: var(--blue);
                        transform: rotate(45deg);
                        box-shadow: var(--shadow-main);
                    }
                }
            }
        }
    }
}