/*Container of the logo */
body {
    margin: 0;
    padding: 0;
    background-color: #F8F7F4;
}

.content-diff {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", "Montserrat", "sans-serif";
    color: #1A1A2E;
}

.logo-container {
    width: 250px;
    height: 83px;
    margin: 0 0 0 9rem;
    margin-bottom: 40px; /* Adjust this value as needed */
}

/* Width and height of logo */
.logo-img {
    max-width: 100%;
    max-height: 100%;
}

/* Article Card */
.article-card a {
    text-decoration: none;
}

.article-card img {
    display: block;
}

.article-card {
    display: grid;
    grid-template-columns: 285px minmax(300, 445px);
    max-width: 730px;
    border-radius: 10px;
    box-shadow: 6px 6px 5px hsla(0, 0%, 0%, 0.02),
        25px 25px 20px hsla(0, 0%, 0%, 0.03),
        100px 100px 80px hsla(0, 0%, 0%, 0.05);
}

.img-box {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.article-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    transition: all 0.5s ease;
}

.article-card:hover .article-banner {
    transform: scale(1.1);
}

.article-content {
    background: var(--white);
    padding: 32px 40px;
    border-radius: 0 10px 10px 0;
}

.article-title {
    font-size: 20px;
    color: var(--very-dark-grayish-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-text {
    font-size: var(--fs-13);
    color: var(--desaturated-dark-blue);
    margin-bottom: 18px;
    line-height: 1.5;
}

.article-content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
}

.author-name {
    color: var(--very-dark-grayish-blue);
    font-size: var(--fs-13);
}

.publish-date {
    color: var(--grayish-blue);
    font-size: var(--fs-13);
}

.article-title:hover,
.author-name:hover {
    filter: invert(1);
}

.flexbox-container {
    display: flex;
    justify-content: space-between;
}

.flexbox-item {
    width: 200px;
    margin: 10px;
    border: 3px solid #333;
    background-color: #dfdfdf;
}

.flexbox-item-1 {
    min-height: 100px;
}

.flexbox-item-2 {
    min-height: 200px;
}

.flexbox-item-3 {
    min-height: 300px;
}

/*body {
    background: #ffffff;
    color: #2c2b51;
    font-family: "Montserrat";
    //display: grid;
    //place-content: center;
}*/

/*
.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #2c2b51;
    border-top-color: #eda720;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}*/

/*
section {
    width: 90rem;
    height: 2.875rem;
    flex-shrink: 0;
    fill: #eda720;
}*/

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100%); /* Adjust as needed based on your layout */
    height: 100%;
    background-color: rgba(237, 167, 32, 0.2); /* #eda720 with 40% opacity */
}

.card-body {
    position: relative; /* Ensure the content is on top of the overlay */
    z-index: 1; /* Place the content above the overlay */
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.not-found-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.not-found {
    max-width: 40%;
    height: auto;
}

.not-found-text {
    font-size: 24px;
    margin-top: 20px;
}

.btn {
    margin-top: 20px;
}

.load-more-button {
    display: flex;
    outline: 0; /* Remove the black outline */
    align-items: center;
    justify-content:center;
    font-size: 14px;
    width: 180px;
    height: 52px;
    text-transform: uppercase;
    background-color: #f9c850;
    color: #ffffff;
    border-radius: 4px;
    margin: 0 auto;
    text-decoration: none;
    transition: background-color 0.3s, opacity 0.3s;

}

.load-more-button:hover {
    background-color: #eda720;
}

.load-more-button.unhovered {
    opacity: 0.2;
}

.home-tags-widget {
    --home-tags-row-height: 30px;
}

.home-tags-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #888;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-tags-search:focus-within {
    border-color: #eda720;
    box-shadow: 0 0 0 3px rgba(237, 167, 32, 0.14);
}

.home-tags-search i {
    font-size: 12px;
    flex-shrink: 0;
}

.home-tags-search-input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #1A1A2E;
    font: inherit;
    font-size: 13px;
}

.home-tags-search-input::placeholder {
    color: #aaa;
}

.home-tags-scroll {
    max-height: 172px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(237, 167, 32, 0.7) rgba(44, 43, 81, 0.08);
}

.home-tags-scroll::-webkit-scrollbar {
    width: 6px;
}

.home-tags-scroll::-webkit-scrollbar-track {
    background: rgba(44, 43, 81, 0.08);
    border-radius: 999px;
}

.home-tags-scroll::-webkit-scrollbar-thumb {
    background: rgba(237, 167, 32, 0.75);
    border-radius: 999px;
}

.home-tags-widget:not(.is-searching) .home-tag-overflow {
    display: none;
}

.home-tags-fade-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: var(--home-tags-row-height);
    margin-top: 6px;
    overflow: hidden;
    opacity: 0.5;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 100%);
}

.home-tags-widget.is-searching .home-tags-fade-row {
    display: none;
}

.home-sidebar-tag.is-filtered-out {
    display: none;
}

.home-tags-empty {
    margin: 8px 0 0;
    font-size: 12px;
    color: #888;
}

.home-tags-count {
    margin: 8px 0 0;
    font-size: 12px;
    color: #888;
}
