#dateck-blog-archive {
    max-width: 1280px;
    margin: 0 auto;
    padding: 45px 30px 80px;
}

.dateck-archive-hero,
.dateck-archive-cats,
.dateck-archive-search {
    background: #fff;
    border: 2px solid #111;
    border-top: 6px solid #ee9d3d;
    border-radius: 22px;
    padding: 28px 32px;
    margin-bottom: 30px;
    box-shadow: 0 14px 35px rgba(0,0,0,.05);
}

.dateck-kicker,
.dateck-archive-cats strong,
.dateck-archive-search strong {
    color: #ee9d3d;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .06em;
}

.dateck-archive-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    margin: 12px 0 8px;
}

.dateck-archive-hero p {
    font-size: 22px;
    margin: 0;
}

.dateck-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dateck-cat-list a {
    color: #111;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.dateck-cat-list a:hover {
    background: #ee9d3d;
    color: #fff;
}

.dateck-archive-search form {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.dateck-archive-search input {
    flex: 1;
    border: 2px solid #111;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 17px;
}

.dateck-archive-search button,
.dateck-more {
    border: 2px solid #111;
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.dateck-archive-search button:hover,
.dateck-post-card:hover .dateck-more {
    background: #ee9d3d;
    border-color: #ee9d3d;
    color: #fff;
    transform: translateY(-2px);
}

.dateck-found {
    margin: 10px 0 25px;
}

.dateck-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dateck-post-card {
    position: relative;
    background: #fff;
    border: 2px solid #111;
    border-top: 6px solid #ee9d3d;
    border-radius: 22px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 35px rgba(0,0,0,.06);
    transition: .25s ease;
}

.dateck-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,.12);
}

.dateck-card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.dateck-thumb {
    height: 260px;
    overflow: hidden;
    border-bottom: 2px solid #111;
    background: #f5f5f5;
    position: relative;
}

.dateck-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dateck-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dateck-meta {
    color: #ee9d3d;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.dateck-post-card h2 {
    font-size: 25px;
    line-height: 1.18;
    margin: 0 0 18px;
}

.dateck-post-card p {
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
    color: #222;
}

.dateck-more {
    margin-top: auto;
    display: inline-block;
    align-self: flex-start;
    z-index: 4;
    position: relative;
}

.dateck-pagination {
    margin-top: 45px;
}

@media (max-width: 1100px) {
    .dateck-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .dateck-post-grid {
        grid-template-columns: 1fr;
    }

    .dateck-archive-search form {
        flex-direction: column;
    }

    .dateck-archive-hero,
    .dateck-archive-cats,
    .dateck-archive-search {
        padding: 24px 20px;
    }
}
/* Dateck Pagination */
.dateck-pagination {
    margin-top: 55px;
    display: flex;
    justify-content: center;
}

.dateck-pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.dateck-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 2px solid #111;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 800;
    text-decoration: none;
    background: #fff;
    transition: .2s ease;
}

.dateck-pagination .page-numbers.current,
.dateck-pagination .page-numbers:hover {
    background: #ee9d3d;
    border-color: #ee9d3d;
    color: #fff;
    transform: translateY(-2px);
}

.dateck-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #111;
    transform: none;
}
/* Dateck Single Blog */
#dateck-single-post {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 30px 80px;
}

.dateck-single-nav {
    margin-bottom: 24px;
}

.dateck-single-nav a {
    display: inline-block;
    color: #111;
    border: 2px solid #111;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 800;
    text-decoration: none;
    background: #fff;
    transition: .2s ease;
}

.dateck-single-nav a:hover {
    background: #ee9d3d;
    border-color: #ee9d3d;
    color: #fff;
    transform: translateY(-2px);
}

.dateck-single-card {
    background: #fff;
    border: 2px solid #111;
    border-top: 6px solid #ee9d3d;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.dateck-single-thumb {
    height: 430px;
    overflow: hidden;
    border-bottom: 2px solid #111;
    background: #f5f5f5;
}

.dateck-single-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dateck-single-content {
    padding: 42px 50px 55px;
}

.dateck-single-content h1 {
    color: #ee9d3d;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.1;
    margin: 18px 0 28px;
}

.dateck-post-body {
    font-size: 19px;
    line-height: 1.75;
    color: #222;
}

.dateck-post-body p {
    margin-bottom: 1.4em;
}

.dateck-post-body h2,
.dateck-post-body h3 {
    color: #111;
    margin-top: 1.5em;
}

.dateck-post-body img {
    border-radius: 18px;
    max-width: 100%;
    height: auto;
}

.dateck-single-cats {
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    #dateck-single-post {
        padding: 30px 18px 60px;
    }

    .dateck-single-thumb {
        height: 260px;
    }

    .dateck-single-content {
        padding: 30px 22px 38px;
    }
}
.dateck-single-cats {
    padding: 18px 28px !important;
    margin-bottom: 22px !important;
border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.dateck-single-cats strong {
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.dateck-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.dateck-cat-list a {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: .2s ease;
}

.dateck-cat-list a:hover {
    background: #ee9d3d;
    color: #fff;
}.dateck-single-nav {
    margin-bottom: 15px;
}

.dateck-single-nav a {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
}