/*----------------------------------------*/
/*  INFO
/*----------------------------------------*/

/*  Media Queries:          320px, 480px, 768px, 1024px, 1200px

/*--------------------------------------------------------------------------------*/
/*  FEATURE BOX
/*--------------------------------------------------------------------------------*/

.feature-box-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 35px;
}

.feature-box {
    display: flex;
    flex-direction: row;
    justify-content: left;
    width: 390px;
    height: 150px;
    border: 1px solid #121a23;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    background-color: #121a23;
    background-image: -webkit-linear-gradient(90deg, #0c0e12 0%, rgba(31, 41, 53, 0.36078) 100%);
    filter: drop-shadow(0 0 0.75rem #000);
    cursor: pointer;
}
.feature-box:hover {
    border: 1px solid #fffb003b;
}

.feature-box > img {
    width: 150px;
    height: auto;
    border-radius: 5px 0 0 5px;
}

/* Right content: Wrapper */
.feature-box > div {
    display: flex;
    flex-direction: column;
    justify-content: left;
    flex-grow: 1;
    border-radius: 0 5px 5px 0;
}

/* Right content: Title, Text: Wrapper */
.feature-box > div > div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    justify-content: center;
    border-radius: 0 4px 0 0;
    padding: 15px;
}

/* Right content: Title */
.feature-box > div > div > div:first-child {
    color: white;
    text-transform: uppercase;
    padding-bottom: 8px;
}

/* Right content: Text */
.feature-box > div > div > div:last-child {
    font-size: 14px;
}

/* Right content: Button */
.feature-box > div > div:last-child {
    display: flex;
    border-radius: 0 0 5px 0;
    text-align: center;
    justify-content: center;
    background-color: #172129;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
}
.feature-box > div > div:last-child:hover {
    background-color: #1F2D38;
}

@media (max-width: 575px) {
    .feature-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .feature-box > img {
        width: 150px;
        height: auto;
        border-radius: 8px;
        filter: drop-shadow(0 0 0.50rem #222222);
    }

    .feature-box > div {
        width: 100%;
    }

    .feature-box > div > div {
        text-align: center;
        justify-content: center;
        border-radius: 0;
        padding: 15px;
    }

    .feature-box > div > a {
        border-radius: 5px;
    }
}