/* Expandable text with "Devamını Gör" */
.fm-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.fm-clamped.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.fm-toggle-btn {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Video embed container */
.fm-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 1.5rem 0;
}
.fm-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Cover image */
.fm-cover-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Leaflet download button */
.fm-leaflet-download {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 1rem 0;
    transition: background 0.3s;
}
.fm-leaflet-download:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}
.fm-leaflet-download i {
    margin-right: 0.5rem;
}
