.custom-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 คอลัมน์ที่มีความกว้างเท่ากัน */
    gap: 10px;
    width: 800px;
    margin: auto;
    padding: 80px;
    margin-top: -30px;
}

/* ทำให้การจัดเรียงภาพและคำบรรยายใต้ภาพสวยงาม */
.custom-image-container {
    text-align: center; /* จัดให้อยู่ตรงกลาง */
}

.custom-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-image-container img:hover {
    transform: scale(1.1);
}

.custom-image-caption {
    font-size: 14px;
    color: #000000;
    margin-top: 5px;
}

.custom-image-caption2 {
    font-size: 10px;
    color: #3b3b3b;
    margin-top: -5px;
    font-style: italic;
}
