/* CIRCULARS SECTION */
#circulars {
    background-color: #fff;
    padding: 100px 10%;
    text-align: center;
}

#circulars .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}

/* Grid Layout */
.circular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Circular Card */
.circular-card {
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 340px;
}

.circular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.circular-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Info Section */
.circular-info {
    padding: 20px 18px;
    text-align: left;
}

.circular-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.circular-info .date {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    #circulars {
        padding: 80px 5%;
    }

    .circular-grid {
        gap: 25px;
    }

    .circular-info {
        text-align: center;
    }
}