.wp-block-preformatted{
    white-space: normal !important;
}
.custom_ig_gallery {
    max-width: 1200px;
    margin: auto;
    /*padding: 20px;*/
    margin-top: 3% !important;
    margin-bottom: -8%;
}

.custom_ig_row {
    display: flex;
    justify-content: space-between;
    /*gap: 20px;*/
    margin-bottom: 20px;
    width: 100%;
    /*margin-top: -19%;*/
}

.custom_ig_image-card {
    position: relative;
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
}

/* Make cards in second row take up more width */
.custom_ig_row:nth-child(2) .custom_ig_image-card {
    flex: 0 0 calc(50% - 10px);  /* Changed to 50% minus half of the gap */
}

.custom_ig_image-card img{
    width: 100%;
    height: 250px;
    object-fit: fill;
    display: inline-block;
    border-radius: 5px;
    filter: brightness(0.7);
    padding: 5px;
}

.custom_ig_image-card img::after {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.custom_ig_image-info {
    position: absolute;
    bottom: 14%;
    left: 0;
    right: 0;
    padding: 15px;
    /*background: linear-gradient(transparent, rgba(0,0,0,0.8));*/
    color: white;
}

.custom_ig_image-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.custom_ig_publish-date {
    font-size: 14px;
    opacity: 0.9;
}

.pub_date{
    font-family: 'danaFaNum';
    float: inline-end;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom_ig_row {
        flex-direction: column;
        align-items: center;
    }

    .custom_ig_image-card, .custom_ig_row:nth-child(2) .custom_ig_image-card {
        width: 100%;
        flex: none;
        /*margin-bottom: 20px;*/
    }
} 