/* ==================================================
   FAIR CUSTOMS - DevLabNet
   ================================================== */

.fair-customs {
    max-width: 1050px;
    margin: 0 auto;
    line-height: 1.65;
}

.fc-hero {
    text-align: center;
    padding: 30px 0 20px;
}

.fc-kicker {
    font-size: .85rem;
    letter-spacing: .15em;
    font-weight: 700;
    opacity: .7;
}

.fc-lead {
    font-size: 1.35rem;
}

.fc-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0;
}

.fc-numbers > div {
    padding: 22px 12px;
    border: 1px solid #ddd;
    border-radius: 14px;
    text-align: center;
}

.fc-numbers strong {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.fc-numbers span {
    display: block;
    margin-top: 4px;
    font-size: .9rem;
}

.fc-block {
    margin: 45px 0;
}

.fc-highlight {
    margin: 25px auto;
    padding: 22px;
    max-width: 600px;
    border: 2px solid #ccc;
    border-radius: 14px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
}

.fc-table-wrap {
    overflow-x: auto;
}

.fc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.fc-table th,
.fc-table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
}

.fc-table th {
    text-align: left;
}

.fc-table td:last-child,
.fc-table th:last-child {
    text-align: right;
}

.fc-total {
    font-weight: 700;
}

.fc-quote {
    margin: 35px auto;
    max-width: 750px;
    padding: 22px 28px;
    border-left: 5px solid currentColor;
    font-size: 1.3rem;
    font-weight: 700;
}

.fc-action {
    text-align: center;
    padding: 35px 20px;
    border: 1px solid #ddd;
    border-radius: 16px;
}

.fc-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.fc-button {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid currentColor;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.fc-sources {
    margin-top: 20px;
    padding-left: 1.4em;
}

.fc-sources li {
    margin-bottom: 18px;
}

.fc-sources a {
    font-weight: 600;
}

.fc-method {
    font-size: .9rem;
    opacity: .85;
}

@media (max-width: 650px) {
    .fc-numbers {
        grid-template-columns: 1fr;
    }

    .fc-block {
        margin: 32px 0;
    }

    .fc-highlight {
        font-size: 1.1rem;
    }
}