/* Per-product "Related Brochures" block — rendered by inc/brochures.php
   on single product pages between FBT and Related Products. */

.able-product-brochures {
    padding: 32px 0 8px;
}

.able-product-brochures-heading {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1e;
}

.able-product-brochures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.able-pb-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 6px;
    text-decoration: none !important;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.able-pb-card:hover {
    transform: translateY(-2px);
    border-color: #ffb700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.able-pb-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 4px;
}

.able-pb-body {
    flex: 1;
    min-width: 0;
}

.able-pb-title {
    display: block;
    font-weight: 700;
    color: #1c1c1e;
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 6px;
}

.able-pb-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffb700;
}

.able-pb-card:hover .able-pb-link { color: #1c1c1e; }
