/* Certificates */
.gallery-section {
    margin-top: 0rem;
}

.gallery-title {
    text-align: center;
    padding-bottom: 0px;
    position: relative;
}

.gallery-title h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
padding: 8px 20px;
margin: 0;
background: color-mix(in srgb, var(--accent-color), transparent 90%);
color: var(--accent-color);
display: inline-block;
text-transform: uppercase;
border-radius: 50px;
font-family: var(--default-font);
}

.gallery-title p {
color: var(--heading-color);
margin: 10px 0 0 0;
font-size: 32px;
font-weight: 700;
font-family: var(--heading-font);
}

.gallery-title p .description-title {
color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0px;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;*/
}

.card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 595 / 842;
    object-fit: cover;
}

.card-img:hover img {
    transform: scale(2.00);
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #64748B;
    font-size: 0.95rem;
}

/* Responsive breakpoints */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}