@import url('./components/download-container.css');

.currents-section {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}
.currents-section .current-item-wrapper.primary{
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}



/*------------------------------------*\
# CURRENT ITEM
\*------------------------------------*/

.current-item{
    border: 1px solid var(--light-teal-1);
    padding: 20px 15px;
    min-height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.current-item .current-item-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.current-item .item-title{
    font-weight: bolder;
    font-size: 1.5rem;
}
.current-item .item-category{
    color: var(--white);
    background-color: var(--teal);
    padding: 4px 20px;
    height: fit-content;
    width: fit-content;
    border-radius: 20px;
}
.current-item .item-img{
    width: 60%;
    border-radius: 20px;
    margin: 20px 0;
    aspect-ratio: 10 / 6;
    background-color: var(--lighter-teal);
}
.current-item-wrapper.primary .item-img{
    width: 100%;
}
.current-item .item-description{
    margin: 20px 0;
    font-size: 1.4rem;
    font-weight: bold;
}
.current-item ul li{
    color: var(--orange);
}
.current-item ul li:before{
    left: 0 !important;
}
.current-item ul li:after{
    left: 6px !important;
    background-image: url('../img/icons/tick-fill.svg');
    background-size: 13px;
}


/*------------------------------------*\
# CUSTOMER COMMENTS
\*------------------------------------*/

.customer-comments-section > .full-width{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.customer-comments-section .rating{
    font-size: 1.25rem;
}



/*------------------------------------*\
# FEATURES CARD
\*------------------------------------*/

.features-card-item{
    background-color: var(--teal);
    color: var(--light-teal);
    padding: 60px 30px;
    border-radius: 20px;
    max-width: 550px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    color: var(--white);
}
.features-card-item .item-title{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}
.features-card-item p{
    margin: 30px 0;
    color: var(--light-teal-1);
}
.features-card-item .button{
    margin-top: auto;
}
.features-card-item li:before{
    background-color: var(--orange);
}