/* ── Shared Hero (matches site pattern) ─────────────────────── */
.hero {
    min-height: 50vh;
    background: linear-gradient(180deg, #1A241E 0%, #0D1410 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;   /* was: padding: 80px 0; */
    padding-bottom: 80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(198, 168, 103, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 168, 103, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    top: 10%;
    right: 10%;
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: #C6A867; }
.breadcrumb-separator { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: #C6A867; font-weight: 500; }

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.15;
    max-width: 850px;
    margin-bottom: 20px;
}

.hero-highlight {
    font-style: italic;
    background: linear-gradient(135deg, #C6A867 0%, #E8D5A3 50%, #C6A867 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #A8A49C;
    line-height: 1.8;
    max-width: 750px;
}

/* ── Entries Grid ───────────────────────────────────────────── */
.entries-section {
    background: #FAFAF8;
    padding: 100px 0;
}

.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));  /* was: minmax(320px, 1fr) */
    gap: 32px;
    justify-content: center;  /* NEW — keeps cards left-aligned/centered instead of stretching */
}

.entry-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    cursor: pointer;
}

.entry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.1);
}

.entry-card-image {
    aspect-ratio: 16/10;
    background: #EEEDE7;
    overflow: hidden;
}

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

.entry-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EEEDE7, #DDDBD1);
}

.entry-card-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.entry-card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 10px;
}

.entry-card-location { color: #999; text-transform: none; font-weight: 400; }

.entry-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    color: #1A241E;
    line-height: 1.35;
    margin-bottom: 10px;
}

.entry-card-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.entry-card-readmore {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2D5A3D;
    margin-top: auto;
}

.entries-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    color: #888;
    padding: 60px 0;
}

/* ── Load More ──────────────────────────────────────────────── */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.load-more-btn {
    padding: 14px 40px;
    background: #2D5A3D;
    color: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover { background: #1A241E; }
.load-more-btn:disabled { opacity: 0.6; cursor: default; }

/* ── Single Entry Page ──────────────────────────────────────── */
.entry-meta-badge {
    display: inline-flex;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(198, 168, 103, 0.15);
    border: 1px solid rgba(198, 168, 103, 0.3);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #E8D5A3;
    margin-bottom: 20px;
}

.entry-featured-image {
    background: #FAFAF8;
    padding: 0 0 0;
    margin-top: -1px;
}

.entry-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.entry-content-section {
    background: #FAFAF8;
    padding: 80px 0 100px;
}

.entry-content-container {
    max-width: 800px;
}

.entry-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #444;
    line-height: 1.9;
}

.entry-content h2, .entry-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1A241E;
    margin: 40px 0 16px;
}

.entry-content p { margin-bottom: 20px; }

.entry-content .wp-block-gallery,
.entry-content figure.wp-block-image {
    margin: 32px 0;
}

.entry-content .wp-block-gallery img,
.entry-content figure.wp-block-image img {
    border-radius: 12px;
    cursor: zoom-in;
}

.back-to-entries {
    display: inline-block;
    margin-top: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2D5A3D;
    text-decoration: none;
}

.back-to-entries:hover { color: #1A241E; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .entries-section { padding: 60px 0; }
    .entries-grid { grid-template-columns: 1fr; gap: 24px; }
    .entry-content-section { padding: 50px 0 60px; }
}