ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.featured-single {
    position: relative;
    padding-right: 30px;
    margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
    .featured-single {
        margin-bottom: 80px;
        padding-right: 60px;
    }
}
.featured-img {
    margin-bottom: 20px;
    position: relative;
}
.featured-img::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 15, 15, 0.24) 0%, rgba(15, 15, 15, 0.24) 100%), rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}
.featured-img:hover::before {
    opacity: 1;
}
.featured-img:hover .view-details-btn {
    opacity: 1;
}
.featured-img .featured-date {
    position: absolute;
    right: -30px;
    bottom: 0;
}
@media only screen and (min-width: 768px) {
    .featured-img .featured-date {
        right: -60px;
    }
}
.featured-img img {
    width: 100%;
}
.view-details-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    place-content: center;
    gap: 4px;
    background-color: #fff;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.01) 0px 18px 36px -18px inset;
}
@media only screen and (min-width: 992px) {
    .view-details-btn {
        width: 120px;
        height: 120px;
        font-size: 16px;
    }
}
.view-details-btn i {
    transform: rotate(-45deg);
}
.view-details-btn:hover {
    background-color: #7fe85a;
    color: #121212;
}
.featured-date {
    width: 30px;
    height: 100px;
    background-color: #ededed;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}
@media only screen and (min-width: 768px) {
    .featured-date {
        width: 60px;
        height: 165px;
    }
}
.featured-date span {
    transform: rotate(-90deg);
    display: inline-block;
    position: relative;
}
.featured-date span::before {
    content: "";
    position: absolute;
    height: 1.3px;
    width: 30px;
    background-color: #121212;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
    .featured-date span::before {
        left: 55px;
    }
}
.featured-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media only screen and (min-width: 576px) {
    .featured-content {
        flex-direction: column;
        gap: 10px;
    }
}
@media only screen and (min-width: 768px) {
    .featured-content {
        justify-content: space-between;
        flex-direction: row;
    }
}
.featured-title {
    font-size: 20px;
    max-width: 300px;
}
@media only screen and (min-width: 576px) {
    .featured-title {
        font-size: 28px;
        max-width: inherit;
    }
}
@media only screen and (min-width: 768px) {
    .featured-title {
        max-width: 300px;
    }
}
.featured-title span {
    font-weight: 300;
    font-style: italic;
}

.featured-title a{
    transition: all 0.3s 0s ease-out;
}

.featured-title a:hover {
    color: #7fe85a;
    text-decoration: none;
}
.feature-category ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
.feature-category ul li {
    position: relative;
    padding-left: 7px;
    font-size: 14px;
}
@media only screen and (min-width: 576px) {
    .feature-category ul li {
        font-size: 16px;
    }
}
.feature-category ul li::before {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #8d8d8d;
}
.feature-btn {
    text-align: center;
}
