/* İçerik metni içindeki resimlerin taşmasını engelle */
.content-body img {
    max-width: 100%;
    height: auto;
}

/* Galeri Resimleri Efekti */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

    .gallery-item img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 200px; /* Kare/Dikdörtgen standart yükseklik */
        object-fit: cover;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Overlay icon */
    .gallery-item::after {
        content: '\f00e'; /* FontAwesome search icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 2rem;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

.share-box {
    border: 1px solid #dbe8f6;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f8ff 100%);
    border-radius: 14px;
    padding: .9rem 1rem;
    margin-bottom: 1.5rem;
}

.share-title {
    margin: 0;
    font-weight: 700;
    color: #0d4f8b;
    font-size: .95rem;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid #c8ddf2;
    background: #fff;
    color: #1f5f99;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: #0b4a82;
    box-shadow: 0 8px 16px rgba(11, 74, 130, .16);
}

.share-copy-btn {
    border: 1px solid #c8ddf2;
    background: #fff;
    color: #1f5f99;
    border-radius: 999px;
    padding: .38rem .8rem;
    font-size: .86rem;
    font-weight: 600;
}
