﻿.orange-item {
    background-color: #C88A12;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 10px;
    
    a {
        color: black;
        display: flex;
        flex-direction: column;
    }
}

.orange-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 72%;
    flex-shrink: 0;
    img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }
}

.orange-text {
    height: 100%;
    min-height: 103px;
    flex-shrink: 1;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
    * {
        margin: 0 !important;
    }
    a {
        color: #000000;
        font-weight: 700;
        text-decoration:underline;
    }
    @media(max-width: $point-small) {
        font-size: 14px;
    }
}
