/* Home page styles */

.main-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
}

.badge {
    margin-top: 24px;
    padding: 10px 24px;
    border: 1px solid #0173B2;
    border-radius: 50px;
    display: inline-block;
    font-size: 1rem;
    color: #0173B2;
    background: rgba(1, 115, 178, 0.08);
}

.section {
    margin-bottom: 32px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background: #f5f5f5;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px;
    flex: 1 1 320px;
    max-width: 350px;
    min-width: 260px;
    border: 1px solid #e8e8e8;
}

.social-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 24px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    background: #0173B2;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.social-btn:visited {
    color: #ffffff;
}

.social-btn:hover {
    background: #DE8F05;
    color: #ffffff;
}

.social-btn:active {
    background: #b56e00;
    color: #ffffff;
}

.social-btn:focus-visible {
    outline: 3px solid #DE8F05;
    outline-offset: 2px;
}

/* Responsive tablet */
@media (max-width: 900px) {
    .main-wrapper {
        padding: 16px 4px;
    }

    .cards {
        flex-direction: column;
        gap: 16px;
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    .card {
        padding: 12px;
    }

    /* Stack social buttons vertically */
    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
