* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #333;
}

.Dth-headerD {
    background-image: url('/assets/images/BG%20Hero.jpg');
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 61px;
    letter-spacing: 1.1px;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.10);

    background-size: cover;
    background-position: center 80%;
}


.Dth-mainD {
    max-width: 1260px;
    margin: 30px auto 50px;
    padding: 0 20px;
}

.Dth-tabs-search-containerD {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #222;
}

.Dth-tabsD {
    display: flex;
    gap: 30px;
}

.Dth-tabD {
    cursor: pointer;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    user-select: none;
}

.Dth-tabD.Dth-activeD {
    border-bottom: 1px solid #000;
    font-weight: 700;
}

.Dth-search-boxD {
    position: relative;
    width: 180px;
}

.Dth-search-boxD input {
    background-color: rgba(220, 220, 220, 0.669);
    width: 100%;
    height: 28px;
    font-size: 12px;
    padding: 4px 26px 4px 6px;
    border: 1px solid #cccccc44;
    border-radius: 5px;
}

.Dth-search-boxD svg {
    position: absolute;
    right: 6px;
    top: 5px;
    width: 14px;
    height: 14px;
    stroke: #999;
    pointer-events: none;
}

.Dth-cardsD {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* READ MORE BUTTON */
.Dth-card-contentD {
    padding: 20px 22px 22px 22px;
    display: flex;
    flex-direction: column;
}

.Dth-readmoreD {
    align-self: flex-end;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #050505;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    margin-top: -26px;
}

.Dth-cardD:hover .Dth-readmoreD {
    opacity: 1;
    transform: translateY(0);
}



.Dth-cardD {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 4px rgb(0 0 0 / 0.1);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.Dth-cardD:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.Dth-card-imageD {
    height: 220px;
    background-size: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.Dth-card-contentD {
    padding: 20px 22px 22px 22px;
}

.Dth-card-contentD h3 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 8px;
}

.Dth-card-contentD p {
    margin: 0;
    font-size: 18px;
    color: #888;
    line-height: 1.4;
    margin-bottom: 12px;
}

.Dth-card-dateD {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.Dth-footerD {
    max-width: 960px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 14px;
    user-select: none;
}

.Dth-paginationD {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-weight: 700;
    font-size: 14px;
}

.Dth-page-btnD {
    cursor: pointer;
    user-select: none;
    padding: 6px 10px;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.Dth-page-btnD:hover:not(.Dth-disabledD):not(.Dth-activeD) {
    background-color: #f0f0f0;
}

.Dth-page-btnD.Dth-disabledD {
    cursor: not-allowed;
    color: #bbb;
}

.Dth-page-btnD.Dth-activeD {
    text-decoration: underline;
}

.Dth-page-arrowD {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 480px) {
    .Dth-tabs-search-containerD {
        display: grid;
        gap: 10px;
    }

    .Dth-search-boxD {
        width: 100%;
    }

    .Dth-headerD {
        height: 300px;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 35px;

        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.25),
            0 3px 6px rgba(0, 0, 0, 0.15),
            0 6px 12px rgba(0, 0, 0, 0.10);
    }

}