/* ==========================================================================
   Travel Guide Home – diakopes.gr style
   ========================================================================== */

.dk-home {
    padding: 0;
    background: #fff;
}

/* ── Section ── */
.dk-section:first-child {
    padding-top: 80px;
}

.dk-section {
    padding: 50px 0 60px;
    border-bottom: 1px solid #e5e5e5;
}

.dk-section:last-child {
    border-bottom: none;
}

/* ── 3-Column Grid ── */
.dk-section-grid {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 0 30px;
    /* No align-items — each column flows independently for masonry feel */
}

/* ── Section Header (beige block, spans across left + into center) ── */
.dk-section-header {
    background: #f5f0e8;
    padding: 30px 26px 22px;
    margin-bottom: 24px;
    /* Bleed into center column */
    margin-right: -30px;
    position: relative;
    z-index: 2;
}

.dk-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.dk-section-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 18px;
    font-weight: 400;
}

.dk-section-line {
    width: 60px;
    height: 4px;
    background: #1a1a1a;
}

/* ── Article Common ── */
.dk-article-details {
    padding-top: 14px;
}

.dk-article-details a {
    text-decoration: none;
    color: #1a1a1a;
}

.dk-article-details a:hover {
    text-decoration: none;
    color: #555;
}

.dk-article-details h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0 8px;
    color: #1a1a1a;
}

.dk-article-details a:hover h3 {
    color: #555;
}

/* Section title link */
.dk-section-title-link {
    text-decoration: none;
    color: #1a1a1a;
}

.dk-section-title-link:hover,
.dk-section-title-link:focus {
    text-decoration: none;
    color: #555;
}

.dk-section-title-link:hover .dk-section-title {
    color: #555;
}

/* Category badge */
.dk-article-cat a {
    text-decoration: none;
}

.dk-article-cat span {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 3px 8px;
    line-height: 1;
    transition: all 0.2s ease;
}

.dk-article-cat a:hover span {
    background: #1a1a1a;
    color: #fff;
}

/* Author / views meta */
.dk-article-meta {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dk-article-meta .dk-author {
    font-weight: 600;
    color: #666;
}

.dk-article-meta .dk-views {
    margin-left: 12px;
    color: #999;
}

.dk-article-meta .dk-views i {
    margin-right: 3px;
}

/* ── Image containers ── */
.dk-article-image {
    overflow: hidden;
    background: #eee;
}

.dk-article-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.dk-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dk-article-image a:hover img {
    transform: scale(1.03);
}

/* Left column: square-ish image */
.dk-article-image-square {
    width: 100%;
    height: 220px;
}

/* Center column: big landscape hero image */
.dk-article-image-hero {
    width: 100%;
    height: 400px;
}

/* Right column: tall portrait image */
.dk-article-image-portrait {
    width: 100%;
    height: 380px;
}

/* ── Column-specific: LEFT ── */
.dk-col-left {
    display: flex;
    flex-direction: column;
    /* Starts at top — beige header first, then article below */
}

.dk-col-left .dk-article-details h3 {
    font-size: 15px;
}

/* ── Column-specific: CENTER ── */
/* Offset down so the center image starts roughly where the left article image
   starts (below the beige header). This creates the staggered/masonry look. */
.dk-col-center {
    padding-top: 60px;
}

.dk-col-center .dk-article-details h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

/* ── Column-specific: RIGHT ── */
/* Right column image starts at the very top — no offset, flush with section top.
   This is the key masonry stagger: right=top, left=top+header, center=offset */
.dk-col-right {
    display: flex;
    flex-direction: column;
    margin-top: -10px;
}

.dk-col-right .dk-article-details h3 {
    font-size: 15px;
}

/* ── Empty state ── */
.dk-section-empty {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
    font-size: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
    .dk-section-grid {
        grid-template-columns: 200px 1fr 200px;
        gap: 0 20px;
    }

    .dk-section-header {
        margin-right: -20px;
        padding: 22px 18px 16px;
    }

    .dk-section-title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .dk-col-center {
        padding-top: 40px;
    }

    .dk-col-center .dk-article-details h3 {
        font-size: 18px;
    }

    .dk-article-image-hero {
        height: 350px;
    }

    .dk-article-image-portrait {
        height: 330px;
    }
}

@media (max-width: 991px) {
    .dk-section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .dk-section-header {
        margin-right: 0;
    }

    .dk-col-left {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .dk-col-left .dk-section-header {
        grid-column: 1 / -1;
    }

    .dk-col-center {
        padding-top: 0;
    }

    .dk-col-right {
        margin-top: 0;
    }

    .dk-col-center,
    .dk-col-right {
        grid-column: auto;
    }

    .dk-article-image-portrait {
        height: 300px;
    }

    .dk-article-image-hero {
        height: 300px;
    }

    .dk-col-center .dk-article-details h3 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .dk-section {
        padding: 25px 0 35px;
    }

    .dk-section-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dk-col-left {
        grid-template-columns: 1fr;
    }

    .dk-section-header {
        padding: 20px 16px 16px;
    }

    .dk-section-title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .dk-section-desc {
        font-size: 12px;
    }

    .dk-article-image-square {
        height: 220px;
    }

    .dk-article-image-hero {
        height: 250px;
    }

    .dk-article-image-portrait {
        height: 250px;
    }

    .dk-col-center .dk-article-details h3,
    .dk-col-left .dk-article-details h3,
    .dk-col-right .dk-article-details h3 {
        font-size: 16px;
    }
}
