/* ============================================================
   Página: Peças Especiais — Armazém do Eucalipto
   Complemento ao eucalipto-tratado.css (classes base compartilhadas)
   ============================================================ */

/* ==========================================================
   GRADE DE FOTOS — 4 COLUNAS
   ========================================================== */
.photos-row--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .photos-row--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .photos-row--4 .photos-row__item:last-child {
        grid-column: unset;
    }

    .content-block__cta { justify-content: stretch; }
    .btn-content {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
    }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-cta-whatsapp,
    .btn-cta-phone {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .photos-row--4 {
        grid-template-columns: 1fr 1fr;
    }

    .photos-row--4 .photos-row__item:nth-child(3),
    .photos-row--4 .photos-row__item:nth-child(4) {
        grid-column: unset;
    }

    .page-hero__actions { flex-direction: column; align-items: stretch; }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
}

/* ==========================================================
   LINK INLINE
   ========================================================== */
.inline-link {
    color: #AF8656;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.inline-link:hover { color: #CD9C3D; }
