/* Gallery Section Styles */
.gallery-section {
    padding: 0;
}

.gallery-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.gallery-section .col-sm-4,
.gallery-section .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Gallery Card Styles */
.gallery-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.gallery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0879d9;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.new-badge:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 12px;
    border-top: 5px solid #0879d9;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.gallery-content {
    padding:0 10px 15px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #242674;
    line-height: 1.4;
}

.gallery-info {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.gallery-info span {
    margin-right: 18px;
}

.gallery-info i {
    margin-right: 5px;
    color: #64748b;
}

.view-gallery {
    display: block;
    width: 100%;
    border: 1px solid #d9e2ee;
    background: #242674;
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.view-gallery:hover {
    background: #1266c4;
    color: #fff;
    border-color: #1266c4;
}

.view-gallery .arrow {
    float: right;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-section .col-sm-4,
    .gallery-section .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .gallery-section .col-sm-4,
    .gallery-section .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .accordion-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .accordion-body {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .gallery-archive {
        margin: 15px 10px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 14px;
        min-height: auto;
    }
    
    .gallery-card {
        margin-bottom: 15px;
    }
}