/* ============================================================
   Material Discovery Block — cross-page navigation component
   Phase 3C.2C
   ============================================================ */
.mat-discovery {
    padding: clamp(2rem, 3vw, 3rem) 1.5rem;
    background: linear-gradient(135deg, #f7f2ed 0%, #fdfbf9 100%);
    border-top: 1px solid #ece4db;
}
.mat-discovery-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.mat-discovery-kicker {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #2d2419;
    margin-bottom: 1rem;
}
.mat-discovery-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.mat-discovery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5b2328;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 169, 110, 0.22);
    border-radius: 8px;
    transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.mat-discovery-link .bi {
    font-size: 0.9rem;
    color: #b08d57;
}
.mat-discovery-link:hover {
    background: #fff;
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91, 35, 40, 0.08);
    color: #5b2328;
    text-decoration: none;
}

@media (max-width: 480px) {
    .mat-discovery-links {
        flex-direction: column;
        align-items: stretch;
    }
    .mat-discovery-link {
        justify-content: center;
    }
}
