.main-page .banner .user-image {
    height: 243px;
    width: 243px;
    border-radius: 50%;
    object-fit: cover;
}

.main-page .banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 48vh;
}

.main-page .banner .col-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post {
    background-color: #EDF7FA;
    min-height: 20vh;
}

.container .feature-post-card {
    border: none;
    border-radius: 0;
    border-bottom: 1px rgb(128 128 128 / 0.50) solid !important;
}

.container .feature-post-card .badge {
    background-color: var(--dark) !important;
    color: var(--white) !important;
    padding-top: 6px !important;
}

@media screen and (max-width: 1023px) {
    .main-page .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-page .banner .col-7 {
        margin-top: 36px;
    }

    .main-page .banner .col {
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .main-page .banner .user-image {
        height: 183px;
        width: 183px;
    }
}

@media screen and (max-width: 374px) {
    .main-page .banner .user-image {
        height: 153px;
        width: 153px;
    }
}