.child-categories-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #E5E8EF;
    padding: 10px 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.child-category {
    font-family: "Poppins", Sans-serif;
    cursor: pointer;
    min-width: 90px;
}

.post-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.post-column {
    display: flex;
    flex-direction: column;
    padding: 24px 42px;
    border: none !important;
    flex: 1;
}

.post-thumbnail {
    width: 300px !important;
    height: 200px;
    object-fit: cover;
    border-radius: 10px !important;
}

.post-title {
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-category {
    margin: 0;
    padding-bottom: 8px;
}

.post-excerpt {
    margin: 0;
    padding-bottom: 22px;
}

.post-date {
    margin: 0;
}

.post-column-link {
    text-decoration: none;
    color: inherit;
}

.svgIcon {
    opacity: 0;
    transform: translateX(10px) rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-column:hover .post-title {
    transform: translateX(-5px);
}


.post-column:hover .svgIcon {
    opacity: 1;
    transform: translateX(0px) rotate(-45deg);
}

@media (max-width: 768px) {
    .posts-container {
        padding-top: 24px;
    }

    .post-column {
        padding: 24px 20px;
    }

    .post-thumbnail {
        order: -1;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .post-row {
        justify-content: center;
        margin-bottom: 15px;
    }

    .post-column {
        width: 100%;
    }

}






/* -------- button css ----------- */
.buttonContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
    outline: none;
}

.simplyBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    background: white;
    color: #101820;
    border: 1px solid #101820;
    padding: 10px 40px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    will-change: color, border-color;
}


.simplyBtn span {
    margin-right: 20px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.simplyBtn::before {
    z-index: -1;
    content: '';
    position: absolute;
    background: #101820;
    inset: 0;
    clip-path: circle(6px at 20px 50%);
    transition: clip-path 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translate3d(0, 0, 0);
    will-change: clip-path, translate3d;
}

.simplyBtn:hover {
    background: white;
    color: white;
}

.simplyBtn:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.simplyBtn:hover span {
    transform: translateX(-15px);
}

.btnIcon {
    position: absolute;
    right: 8%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 8px;
    vertical-align: middle;
    will-change: opacity;
}

.simplyBtn:hover .btnIcon {
    opacity: 1;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    border-top: 4px solid #000;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-parent-container {
    display: flex;
    justify-content: flex-end;
}

.search-container {
    display: flex;
    align-items: center;
    border-radius: 31px;
    border: 1px solid #0E1821;
    background: #FFF;
    padding: 0px 20px;
    width: 350px;
}

.search-input {
    border: none !important;
    outline: none;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 31px;
    color: #000;
    flex-grow: 1;
}

.search-input::placeholder {
    color: #000;
}