.image-grid-container { margin: 20px 0; }
.image-grid-title { font-size: 1.4em; margin-bottom: 10px; }
.image-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.image-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.image-grid-photo {
    width: 100%;
    padding-top: 60%; /* نسبة العرض للارتفاع */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.image-grid-title-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px 8px;
    font-size: 0.9em;
    opacity: 1; /* بدل 0 */
    transition: none; /* إزالة تأثير الاختفاء */
}

.image-grid-item:hover .image-grid-title-hover { opacity: 1; }