/* 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;
}

/* KVKK consent block: belirgin kutu, görünür checkbox'lar, metin punto eşitliği */
.fm-consent-block {
    border: 2px solid #0d6efd;
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.fm-consent-block .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #6c757d;
    margin-top: 0.15rem;
}
.fm-consent-block .form-check-input:checked {
    border-width: 2px;
}
.fm-consent-block .form-check-label {
    font-size: 0.875rem;
}
.fm-consent-block .small {
    font-size: 0.875rem;
}
