/* =============================================
   Brochures Template Styles
   ============================================= */

.brochures-wrapper {
    background: #f7f5f2;
    min-height: 60vh;
    padding: 60px 5%;
}

.brochures-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ---- Page Title ---- */
.brochures-page-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

/* ---- Brochure Grid ---- */
.brochures-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ---- Brochure Card ---- */
.brochures-card {
    background: #fff;
    flex: 1 1 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px 36px;
    text-align: center;
}

.brochures-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.brochures-card-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.brochures-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ---- Download Button ---- */
.brochures-download-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}

.brochures-download-btn:hover {
    background: #b8a06a;
    border-color: #b8a06a;
    color: #fff;
}

/* ---- Responsive ---- */
@media screen and (max-width: 767px) {
    .brochures-wrapper {
        padding: 40px 5%;
    }

    .brochures-page-title {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .brochures-grid {
        gap: 20px;
    }

    .brochures-card {
        flex: 1 1 200px;
        max-width: 100%;
    }
}
