.btn-custom {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

/* Faaliyetler Sayfası HERO Alanı */
.hero-activities {
    /*
      Görselin yolu: 'assets/css/' klasöründen bir üst ('../') 
      klasördeki 'img/' klasörünün içindeki 'hero_activities_bg.jpg'
    */
    background-image: url('../img/hero_banner_faaliyer.png');
    background-size: cover; /* Görseli alana sığdır */
    background-position: left center; /* Görselin sol tarafını (insanları) odaklar */
    background-repeat: no-repeat;
    /* Metnin dikeyde ortalanması ve minimum yükseklik için */
    min-height: 400px;
    display: flex;
    align-items: center;
}
.hover-card {
    transition: transform 0.3s ease;
}

    .hover-card:hover {
        transform: scale(1.03);
    }

a.text-decoration-none.text-dark {
    display: block;
    height: 100%;
    color: inherit;
}

    a.text-decoration-none.text-dark:hover {
        text-decoration: none;
        color: inherit;
    }

.hover-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card {
    cursor: pointer;
}
.activity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1000px;
    position: relative; /* butonun konumlanması için */
}

    .activity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    .activity-item img {
        flex-shrink: 0;
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 10px;
    }

.activity-divider {
    width: 3px;
    height: 80%;
    background-color: #0d6efd;
    border-radius: 3px;
    flex-shrink: 0;
}

.activity-content {
    flex-grow: 1;
    text-align: left;
    word-wrap: break-word;
}

    .activity-content h5 {
        font-weight: 700;
        color: #222;
        margin-bottom: 8px;
        font-size: clamp(1rem, 1.5vw, 1.25rem);
    }

    .activity-content p {
        color: #555;
        margin-bottom: 0.3rem;
        font-size: clamp(0.85rem, 1.2vw, 1rem);
    }

    .activity-content .date {
        font-size: 0.85rem;
        color: #888;
        margin-top: 5px;
    }

/*  “Devamını Oku” butonu */
.read-more {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

    .read-more:hover {
        color: #084298;
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .activity-divider {
        display: none;
    }

    .activity-item img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .activity-content {
        text-align: center;
        width: 100%;
    }

    .read-more {
        position: static;
        display: inline-block;
        margin-top: 10px;
    }
}