/* general styles start */

.home-page-nav {
    position: static !important;
    box-shadow: none !important;
}

/* general styles end */


/* category content type start */
#category-content-type-heading {
    width: 70%;
    text-align: center;
}
@media (max-width: 768px) {
    #category-content-type-heading {
        width: 90%;
    }
}

/* blog content type */
#content-type-categories.blog-categories {
    width: 100% !important;
    padding-bottom: 40px;
}

/* category content type end */



/* categories start */
.category-wrapper {
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 8px 15px -7px #00000026;
}
#content-type-categories {
    padding: 20px 0px 100px 0px;
}
/* for screens smaller than 769px */
@media (max-width: 768px) {
    #content-type-categories {
        width: 90%;
    }
}
#content-type-categories a {
    text-decoration: none;
    color: black;
}
.content-type-category {
    width: 100%;
    min-height: fit-content;
    border: 1px solid rgb(223, 223, 223);
    background-color: rgb(252 252 252);
    border-radius: 3px;
    padding: 10px;
    transition: 0.2s ease-out;
}
.content-type-category:hover {
    transform: scale(1.001);
    box-shadow: 0px 0px 20px 2px rgb(226, 226, 226);
}
.category-name {
    font-family: Montserrat, Inter, sans-serif;
    margin: 0;
}
.category-name:hover {
    text-decoration: underline;
}
.category-img {
    width: 70px;
}
.category-description {
    color: rgb(97, 97, 97);
}

/* blog categories */
.blog-category-articles-container {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
}
#content-type-categories.blog-categories > .category-wrapper {
    box-shadow: none;
    border-radius: 0;
    padding: 50px 100px;
}

/* categories end */


/* articles start */
.article-img {
    display: none;
}
.article-title {
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 200;
    margin: 0px;
}
.see-all-link {
    color: #24a7ff;
    text-decoration: underline;
    cursor: pointer;
}
@keyframes link-arrow-bounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }  
}
.article-container {
    width: 100%;
    min-height: fit-content;
    border: 1px solid rgb(223 223 223 / 63%);
    background-color: rgb(252 252 252);
    border-radius: 3px;
    padding: 10px;
    /* transition: 0.2s ease-out; */
}
.article-container:hover {
    /* transform: scale(1.001); */
    /* box-shadow: 0px 0px 20px 2px rgb(226, 226, 226); */
    border-color: rgb(58 136 247 / 68%);
}
.link-to-guide-arrow {
    color: #969696;
}
.article-container:hover .link-to-guide-arrow {
    transition: 0.3s ease-out;
    animation: link-arrow-bounce 1s ease-in-out forwards;
}
.hidden-article {
    display: none;
}
@media screen and (max-width: 768px) {
    .article-reading-time {
        display: none;
    }
    .reading-time-dash {
        display: none;
    }
}