/* ==========================================================================
   ABHO Archives — CSS compartilhado (Revistas, Artigos Técnicos, Museu)
   Identidade visual CBHO: Poppins, glassmorphism, gradients
   ========================================================================== */

:root {
    --abho-primary: #00679F;
    --abho-primary-dark: #004d73;
    --abho-primary-light: #e8f4fd;
    --abho-dark: #25363B;
    --abho-accent: #95C11F;
    --abho-accent-dark: #7ba319;
    --abho-white: #ffffff;
    --abho-gray-50: #f8fafc;
    --abho-gray-100: #f1f5f9;
    --abho-gray-200: #e2e8f0;
    --abho-gray-300: #cbd5e1;
    --abho-gray-400: #94a3b8;
    --abho-gray-600: #475569;
    --abho-gray-700: #334155;
    --abho-gray-800: #1e293b;
    --abho-radius: 16px;
    --abho-radius-sm: 10px;
    --abho-shadow: 0 4px 24px rgba(0, 103, 159, 0.08);
    --abho-shadow-lg: 0 12px 40px rgba(0, 103, 159, 0.12);
    --abho-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Hero Section (compartilhado)
   ========================================================================== */

.abho-archive {
    font-family: 'Poppins', sans-serif;
    color: var(--abho-dark);
    line-height: 1.6;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.abho-archive__hero {
    background: linear-gradient(135deg, var(--abho-primary) 0%, var(--abho-primary-dark) 60%, var(--abho-dark) 100%);
    border-radius: var(--abho-radius);
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.abho-archive__hero::before,
.abho-archive__hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: float 8s ease-in-out infinite;
}

.abho-archive__hero::before {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
}

.abho-archive__hero::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -30px;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.abho-archive__hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--abho-white);
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.abho-archive__hero-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    stroke: white;
    position: relative;
    top: -2px;
}

.abho-archive__hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.abho-archive__hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--abho-white);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.abho-archive__hero-notice {
    margin-top: 16px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--abho-radius-sm);
    color: #fecaca;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Descrição / Info text
   ========================================================================== */

.abho-archive__description {
    background: #fff;
    border-radius: var(--abho-radius-md, 12px);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--abho-shadow-sm, 0 1px 4px rgba(0, 0, 0, .06));
    color: var(--abho-gray-600, #475569);
    font-size: 0.9rem;
    line-height: 1.7;
}

.abho-archive__description p {
    margin: 0 0 0.75rem;
}

.abho-archive__description p:last-child {
    margin-bottom: 0;
}

.abho-archive__description-warning {
    color: var(--abho-danger, #dc2626);
}

/* ==========================================================================
   Filtros
   ========================================================================== */

.abho-archive__filters {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--abho-gray-200);
    border-radius: var(--abho-radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--abho-shadow);
}

.abho-archive__search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.abho-archive__search-row:last-child {
    margin-bottom: 0;
}

.abho-archive__search {
    position: relative;
}

.abho-archive__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--abho-gray-400);
    pointer-events: none;
}

.abho-archive__input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid var(--abho-gray-200);
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: var(--abho-white);
    transition: border-color 0.3s var(--abho-transition), box-shadow 0.3s var(--abho-transition);
    box-sizing: border-box;
}

.abho-archive__input:focus {
    outline: none;
    border-color: var(--abho-primary);
    box-shadow: 0 0 0 3px rgba(0, 103, 159, 0.1);
}

.abho-archive__selects {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.abho-archive__select {
    flex: 1;
    min-width: 160px;
    padding: 10px 14px;
    border: 2px solid var(--abho-gray-200);
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    background: var(--abho-white);
    color: var(--abho-dark);
    cursor: pointer;
    transition: border-color 0.3s var(--abho-transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.abho-archive__select:focus {
    outline: none;
    border-color: var(--abho-primary);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.abho-archive__stats {
    padding: 0 4px 16px;
    font-size: 0.85rem;
    color: var(--abho-gray-600);
}

/* ==========================================================================
   Grid
   ========================================================================== */

.abho-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    transition: opacity 0.3s var(--abho-transition);
}

.abho-archive__grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* ==========================================================================
   Revista Card
   ========================================================================== */

.abho-revista-card {
    background: var(--abho-white);
    border-radius: var(--abho-radius);
    overflow: hidden;
    box-shadow: var(--abho-shadow);
    border: 1px solid var(--abho-gray-200);
    transition: transform 0.4s var(--abho-transition), box-shadow 0.4s var(--abho-transition);
    display: flex;
    flex-direction: column;
}

.abho-revista-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--abho-shadow-lg);
}

.abho-revista-card__cover {
    position: relative;
    background: linear-gradient(135deg, var(--abho-gray-100), var(--abho-gray-200));
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.abho-revista-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s var(--abho-transition), opacity 0.3s ease;
}

.abho-revista-card:hover .abho-revista-card__cover img {
    transform: scale(1.05);
}

/* PDF thumb loading state */
.abho-revista-card__cover--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--abho-gray-100), var(--abho-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: abho-pulse 1.4s ease-in-out infinite;
}

@keyframes abho-pulse {
    0%, 100% { opacity: .6; }
    50%      { opacity: 1; }
}

.abho-revista-card__access-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.abho-revista-card__access-badge--free {
    background: rgba(255, 255, 255, 0.88);
    color: #3d7a00;
    border: 1px solid rgba(149, 193, 31, 0.5);
}

.abho-revista-card__access-badge--paid {
    background: rgba(255, 255, 255, 0.88);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.abho-revista-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.abho-revista-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--abho-dark);
    margin: 0 0 8px;
}

.abho-revista-card__date {
    font-size: 0.8rem;
    color: var(--abho-gray-400);
    margin-bottom: 16px;
}

.abho-revista-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abho-revista-card__download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--abho-primary);
    color: var(--abho-white);
    border: none;
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s var(--abho-transition), transform 0.2s;
    text-decoration: none;
}

.abho-revista-card__download-btn:hover {
    background: var(--abho-primary-dark);
    transform: translateY(-1px);
}

.abho-revista-card__download-btn:disabled,
.abho-revista-card__download-btn--locked {
    background: var(--abho-gray-300);
    color: var(--abho-gray-600);
    cursor: not-allowed;
}

.abho-revista-card__download-btn--locked:hover {
    transform: none;
    background: var(--abho-gray-300);
}

.abho-revista-card__download-btn svg {
    width: 16px;
    height: 16px;
}

.abho-revista-card__downloads {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--abho-primary-light);
    border: 1px solid rgba(0, 103, 159, 0.15);
    border-radius: var(--abho-radius-sm);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--abho-primary);
}

.abho-revista-card__downloads svg {
    width: 14px;
    height: 14px;
}

.abho-revista-card__read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--abho-accent, #95C11F);
    color: var(--abho-white, #fff);
    border: none;
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s var(--abho-transition), transform 0.2s;
    text-decoration: none;
}

.abho-revista-card__read-btn:hover {
    background: var(--abho-accent-dark, #7da318);
    color: var(--abho-white, #fff);
    transform: translateY(-1px);
}

.abho-revista-card__read-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Artigo Card — Redesigned
   ========================================================================== */

.abho-artigo-card {
    background: var(--abho-white);
    border-radius: var(--abho-radius);
    overflow: hidden;
    box-shadow: var(--abho-shadow);
    border: 1px solid var(--abho-gray-200);
    transition: transform 0.35s var(--abho-transition), box-shadow 0.35s var(--abho-transition), border-color 0.35s;
    display: flex;
    flex-direction: column;
}

.abho-artigo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--abho-shadow-lg);
    border-color: var(--abho-primary);
}

/* Header — fixed min-height for consistent rows */
.abho-artigo-card__header {
    background: linear-gradient(135deg, var(--abho-primary) 0%, var(--abho-primary-dark) 100%);
    padding: 24px 24px 20px;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.abho-artigo-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--abho-white);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.abho-artigo-card__title a {
    color: var(--abho-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.abho-artigo-card__title a:hover {
    opacity: 0.85;
}

/* Access Badge */
.abho-artigo-card__access-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.abho-artigo-card__access-badge svg {
    flex-shrink: 0;
}

.abho-artigo-card__access-badge--livre {
    background: rgba(149, 193, 31, 0.2);
    color: #d4f5a8;
    border: 1px solid rgba(149, 193, 31, 0.3);
}

.abho-artigo-card__access-badge--pago {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Body */
.abho-artigo-card__body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Autor */
.abho-artigo-card__autor {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--abho-gray-600);
    margin-bottom: 10px;
    line-height: 1.4;
}

.abho-artigo-card__autor svg {
    width: 15px;
    height: 15px;
    color: var(--abho-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Excerpt */
.abho-artigo-card__excerpt {
    font-size: 0.82rem;
    color: var(--abho-gray-600);
    line-height: 1.55;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.abho-artigo-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.abho-artigo-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--abho-primary-light);
    color: var(--abho-primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(0, 103, 159, 0.1);
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.abho-artigo-card__tag--more {
    background: var(--abho-gray-100);
    color: var(--abho-gray-600);
    border-color: var(--abho-gray-200);
    font-weight: 600;
}

/* CTA */
.abho-artigo-card__cta {
    margin-top: auto;
    padding-top: 4px;
}

.abho-artigo-card__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--abho-primary);
    color: var(--abho-white);
    text-decoration: none;
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s var(--abho-transition), transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.abho-artigo-card__cta-btn:hover {
    background: var(--abho-primary-dark);
    color: var(--abho-white);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 103, 159, 0.25);
}

.abho-artigo-card__cta-btn--locked {
    background: var(--abho-gray-200);
    color: var(--abho-gray-600);
    cursor: not-allowed;
}

.abho-artigo-card__cta-btn--locked:hover {
    transform: none;
    box-shadow: none;
    background: var(--abho-gray-300);
}

.abho-artigo-card__cta-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s;
}

.abho-artigo-card__cta-btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   Museu Card
   ========================================================================== */

.abho-museu-card {
    background: var(--abho-white);
    border-radius: var(--abho-radius);
    overflow: hidden;
    box-shadow: var(--abho-shadow);
    border: 1px solid var(--abho-gray-200);
    transition: transform 0.4s var(--abho-transition), box-shadow 0.4s var(--abho-transition);
    display: flex;
    flex-direction: column;
}

.abho-museu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--abho-shadow-lg);
}

.abho-museu-card__cover {
    position: relative;
    background: var(--abho-gray-100);
    overflow: hidden;
    height: 220px;
}

.abho-museu-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--abho-gray-100, #f1f5f9);
    padding: 8px;
    transition: transform 0.4s var(--abho-transition);
}

.abho-museu-card:hover .abho-museu-card__cover img {
    transform: scale(1.08);
}

.abho-museu-card__gallery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: var(--abho-white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.abho-museu-card__gallery-badge svg {
    width: 12px;
    height: 12px;
}

.abho-museu-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.abho-museu-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--abho-dark);
    margin: 0 0 12px;
    line-height: 1.35;
}

.abho-museu-card__title a {
    color: var(--abho-dark);
    text-decoration: none;
}

.abho-museu-card__title a:hover {
    color: var(--abho-primary);
}

.abho-museu-card__details {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abho-museu-card__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--abho-gray-600);
}

.abho-museu-card__detail svg {
    width: 14px;
    height: 14px;
    color: var(--abho-primary);
    flex-shrink: 0;
}

.abho-museu-card__detail-label {
    font-weight: 600;
    color: var(--abho-gray-700);
}

.abho-museu-card__cta {
    margin-top: auto;
}

.abho-museu-card__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--abho-primary);
    color: var(--abho-white);
    text-decoration: none;
    border-radius: var(--abho-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s var(--abho-transition);
}

.abho-museu-card__cta-btn:hover {
    background: var(--abho-primary-dark);
    color: var(--abho-white);
}

.abho-museu-card__cta-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.abho-archive__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--abho-gray-400);
}

.abho-archive__empty svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.abho-archive__empty p {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   Loading
   ========================================================================== */

.abho-archive__loading {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.abho-archive__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--abho-gray-200);
    border-top-color: var(--abho-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Pagination (compartilhado)
   ========================================================================== */

.abho-archive__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 32px 0 16px;
    flex-wrap: wrap;
}

.abho-archive__pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--abho-gray-200);
    border-radius: var(--abho-radius-sm);
    background: var(--abho-white);
    color: var(--abho-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s var(--abho-transition);
}

.abho-archive__pagination-btn:hover:not(:disabled) {
    border-color: var(--abho-primary);
    color: var(--abho-primary);
}

.abho-archive__pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.abho-archive__pagination-btn svg {
    width: 14px;
    height: 14px;
}

.abho-archive__pagination-pages {
    display: flex;
    gap: 4px;
}

.abho-archive__pagination-page {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--abho-gray-200);
    border-radius: var(--abho-radius-sm);
    background: var(--abho-white);
    color: var(--abho-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s var(--abho-transition);
}

.abho-archive__pagination-page:hover {
    border-color: var(--abho-primary);
    color: var(--abho-primary);
}

.abho-archive__pagination-page.is-active {
    background: var(--abho-primary);
    border-color: var(--abho-primary);
    color: var(--abho-white);
}

.abho-archive__pagination-dots {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: var(--abho-gray-400);
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .abho-archive__hero {
        padding: 32px 24px;
    }

    .abho-archive__hero-title {
        font-size: 1.5rem;
    }

    .abho-archive__filters {
        padding: 16px;
    }

    .abho-archive__search-row {
        grid-template-columns: 1fr;
    }

    .abho-archive__selects {
        flex-direction: column;
    }

    .abho-archive__grid {
        grid-template-columns: 1fr;
    }

    .abho-revista-card__cover {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .abho-archive {
        padding: 0 12px;
    }

    .abho-archive__hero {
        padding: 24px 16px;
        border-radius: var(--abho-radius-sm);
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {

    .abho-archive__filters,
    .abho-archive__pagination,
    .abho-revista-card__actions,
    .abho-artigo-card__cta,
    .abho-museu-card__cta {
        display: none;
    }
}