.featured-blog-wrapper svg {
    width: 1em;
    height: 1em;
}

.featured-blog-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(300px, 1fr));
    gap: 30px;
}

@media only screen and (min-width: 768px) {
    .featured-blog-wrapper {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media only screen and (min-width: 992px) {
    .featured-blog-wrapper {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
}

.featured-box-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px !important;
}

@media only screen and (min-width: 576px) {
    .featured-box-title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) {
    .featured-box-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .featured-box-title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    .featured-box-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) {
    .featured-box-title {
        font-size: 32px;
    }
}

.featured-box-title span {
    font-size: 16px;
    flex: 0 0 auto;
}

.featured-box-title a {
    display: inline-flex;
    gap: 0 7px;
}

.featured-box-title a:hover {
    text-decoration: none;
}

.featured-box-thumb {
    border-radius: 14px;
    overflow: hidden;
    height: 210px;
    margin-bottom: 20px;
    transition: 0.5s;
}

@media only screen and (min-width: 992px) {
    .featured-box-thumb {
        height: 0;
    }
}

.featured-box-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 576px) {
    .featured-box-btn .btn-border {
        padding: 5px 5px 5px 15px;
    }
}

@media only screen and (min-width: 768px) {
    .featured-box-btn .btn-border {
        padding: 5px 5px 5px 20px;
    }
}

@media only screen and (min-width: 576px) {
    .featured-box-btn .btn-border .icon-box {
        padding: 6px 10px;
        margin-left: 0px;
    }
}

@media only screen and (min-width: 768px) {
    .featured-box-btn .btn-border .icon-box {
        padding: 8px 13px;
        margin-left: 15px;
    }
}

.featured-box {
    padding: 20px;
    background-color: #efefef;
    border-radius: 21px;
    height: fit-content;
}

@media only screen and (min-width: 768px) {
    .featured-box {
        padding: 30px;
    }
}

@media only screen and (min-width: 1400px) {
    .featured-box {
        padding: 60px 40px;
    }
}

.featured-box p {
    font-weight: 400;
    font-size: 18px;
    color: #4d4d4d;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-box.active .featured-box-thumb {
    height: 210px;
    margin-bottom: 20px;
}

.featured-box.active .featured-box-thumb img {
    width: 100%;
}

.btn-border {
    border: 1px solid #121212;
    border-radius: 15px;
    padding: 5px 5px 5px 20px;
    display: inline-block;
}

.btn-border:hover {
    background-color: #ff6d39;
    border-color: #ff6d39;
}

.btn-border:hover .text-content {
    color: #fff;
}

.btn-border:hover .icon-box {
    background-color: #fff;
    color: #121212;
    fill: #121212;
}

.btn-border .text-content {
    font-weight: 500;
    font-size: 16px;
    color: #121212;
}

.btn-border .icon-box {
    padding: 8px 13px;
    background-color: #ff6d39;
    border-radius: 11px;
    display: inline-block;
    margin-left: 15px;
    color: #fff;
    fill: #fff;
}

.btn-border.btn-bg {
    background-color: #ff6d39;
    border-color: #ff6d39;
}

.btn-border.btn-bg:hover {
    background-color: #121212;
    border-color: #121212;
}

.btn-border.btn-bg .text-content {
    color: #fff;
    font-weight: 600;
}

.btn-border.btn-bg .icon-box {
    background-color: #fff;
    color: #121212;
}

