/* =====================================================================
   LAYOUT — full width, no sidebar
   ===================================================================== */

.focus-main {
    display: block;
    grid-template-columns: none;
    padding-bottom: 40px;
    background-color: #fafbfc;
}

.focus-layout {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1560px;
    margin: 0 auto;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =====================================================================
   STICKY MEDIA COLUMN (photo + map) — photo is now the star
   ===================================================================== */

.focus-media {
    position: sticky;
    top: 24px;
    align-self: start;
}

.focus-photo-wrap {
    position: relative;
}

.focus-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(21, 27, 84, 0.16);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.focus-photo:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(21, 27, 84, 0.22);
}

.focus-format-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(199, 123, 48, 0.95);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Map is now a small, quiet locator — not competing with the photo */

.focus-map-card {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.focus-map {
    width: 100%;
    height: 120px;
}

.focus-location-text {
    padding: 10px 14px 0;
    font-size: 0.82rem;
    color: #333333;
    margin: 0;
}

.focus-map-link {
    display: block;
    padding: 3px 14px 10px;
    font-size: 0.75rem;
    color: #151b54;
    text-decoration: underline;
}

.focus-map-link:hover {
    color: #c77b30;
}

/* =====================================================================
   TEXT COLUMN — now actually uses the available width
   ===================================================================== */

.focus-content {
    max-width: none;
}

.focus-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #151b54, #262d7a);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 0 16px;
}

.focus-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #111111;
    letter-spacing: -0.01em;
}

.focus-subtitle {
    font-size: 1.25rem;
    font-style: italic;
    color: #555555;
    margin: 0 0 8px;
}

.focus-date {
    font-size: 1rem;
    color: #6a0202;
    margin: 0 0 20px;
}

.focus-content::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #151b54, #c77b30 45%, transparent 90%);
    border-radius: 3px;
    margin: 0 0 36px;
}

/* ---- Weather + copy link row (two separate boxes) ---- */

.focus-meta-row {
    margin-top: 16px;
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.focus-weather-card {
    flex: 1;
    min-width: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.focus-weather-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #999999;
    margin: 0 0 10px;
}

.focus-weather-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.focus-weather-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.focus-weather-info {
    flex: 1;
    min-width: 0;
}

.focus-weather-temp {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.focus-weather-desc {
    font-size: 0.85rem;
    color: #666666;
    margin: 2px 0 0;
}

.focus-copy-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #c77b30;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(199, 123, 48, 0.35);
    transition: background-color 0.12s ease, transform 0.08s ease;
}

.focus-copy-btn:hover {
    background-color: #b54723e0;
}

.focus-copy-btn:active {
    transform: scale(0.96);
}

.focus-copy-btn.copied {
    background-color: #2f7d4f;
    box-shadow: 0 2px 10px rgba(47, 125, 79, 0.35);
}

/* ---- Section headings ---- */

.focus-section {
    margin-bottom: 34px;
}

.focus-section:last-child {
    margin-bottom: 0;
}

.focus-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 16px;
}

/* ---- Narrative style: now a soft card, matching the technical panels ---- */

.focus-narrative {
    background-color: #ffffff;
    border: 1px solid #edeef1;
    border-radius: 8px;
    padding: 26px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.focus-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
    margin: 0 0 16px;
}

.focus-narrative p:last-child {
    margin-bottom: 0;
}

/* ---- Technical style (camera settings, film/scan details) ---- */

.focus-technical {
    background-color: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 22px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.focus-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed #dddddd;
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: 0.94rem;
}

.focus-spec-row:last-child {
    border-bottom: none;
}

.focus-spec-label {
    color: #666666;
}

.focus-spec-value {
    color: #151b54;
    font-weight: 700;
    text-align: right;
}

/* =====================================================================
   LIGHTBOX (click photo to enlarge)
   ===================================================================== */

.focus-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.focus-lightbox.active {
    display: flex;
}

.focus-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.focus-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.9;
}

.focus-lightbox-close:hover {
    opacity: 1;
}

/* =====================================================================
   MOBILE
   ===================================================================== */

@media (max-width: 900px) {
    .focus-layout {
        display: block;
    }

    .focus-media {
        position: static;
        width: 100%;
        margin-bottom: 32px;
    }

    .focus-title {
        font-size: 2rem;
    }

    .focus-section-heading {
        font-size: 1.2rem;
    }

    .focus-narrative,
    .focus-technical {
        padding: 20px 20px;
    }

    .focus-narrative p {
        font-size: 1.02rem;
    }

    .focus-meta-row {
        flex-direction: column;
    }

    .focus-copy-btn {
        width: 100%;
        padding: 12px 0;
    }
}
