/* Story Specific Styles */
.font-serif { font-family: 'Merriweather', serif; }

.story-gradient { 
    background: radial-gradient(circle at top right, #134e4a 0%, #0f172a 60%);
}

.prose-text {
    line-height: 1.9;
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* Dropcap für den ersten Buchstaben */
.dropcap::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    color: #14b8a6; /* Teal */
}

/* Gallery Masonry Fixes for Tailwind Columns */
#gallery-grid img {
    width: 100%;
    display: block;
}

/* Map Overlay */
#gpx-stats-overlay {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Lightbox specific */
.lightbox {
    background: rgba(0, 0, 0, 0.95);
    transition: opacity 0.2s ease-in-out;
}
.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    border: 2px solid #334155;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    line-height: 0.8;
    z-index: 210;
}
.lightbox-close:hover {
    color: #14b8a6;
}
