/* ===================================================
   Financial Architects — Review Links Component
   File: css/fa-review-links.css
   Footer component pentru link-uri Google + Trustpilot
   =================================================== */

.fa-review-links {
    margin: 48px auto 40px;
    padding: 32px 20px 0;
    text-align: center;
    max-width: 720px;
    border-top: 1px solid rgba(243, 229, 209, 0.12);
}

.fa-review-title {
    color: #f3e5d1;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 18px;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

.fa-review-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.fa-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff8ef;
    color: #3b2118;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(59, 33, 24, 0.1);
    transition: all 0.2s ease;
    min-height: 44px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.fa-review-btn:hover {
    background: #f3e5d1;
    color: #3b2118;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.fa-review-btn:active {
    transform: translateY(0);
}

.fa-review-btn:focus-visible {
    outline: 2px solid #9e3a3a;
    outline-offset: 2px;
}

.fa-review-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* === Mobile responsive === */
@media (max-width: 768px) {
    .fa-review-links {
        margin: 36px auto 32px;
        padding: 28px 16px 0;
    }
}

@media (max-width: 480px) {
    .fa-review-links {
        margin: 32px auto 28px;
        padding: 24px 12px 0;
    }
    .fa-review-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .fa-review-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
        gap: 10px;
    }
    .fa-review-btn {
        justify-content: center;
        width: 100%;
    }
}

/* === Reduced motion accessibility === */
@media (prefers-reduced-motion: reduce) {
    .fa-review-btn {
        transition: none;
    }
    .fa-review-btn:hover {
        transform: none;
    }
}

/* ===================================================
   Override opțional pentru ANPC links (Index.md)
   Pentru a respira față de butoanele de review
   =================================================== */
.financial-page .anpc-links {
    margin-top: 8px !important;
    margin-bottom: 28px !important;
}