/**
 * page.css
 * ------------------------------------------------------------
 * Static content page styles.
 *
 * Contains:
 * - Page section spacing
 * - Section heading styling
 * - Paragraph typography
 * - Badge list layout
 * - Badge item styling
 * - Responsive badge adjustments
 * - Contact link styling
 *
 * This file provides the visual styling for
 * static content pages such as About, Privacy,
 * Terms, and similar informational pages.
 * ------------------------------------------------------------
 */

/* Add spacing between consecutive page sections */
.page-section + .page-section {
    margin-top: 2rem;
}

/* Section headings */
.page-section h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Section paragraph styling */
.page-section p{
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
}

/* Section list item styling */
.page-section li {
    line-height: 1.2;
    color: #475569;
    margin-bottom: 1rem;
}

/* Section list item styling on small screens */
@media (max-width: 576px) {
    .page-section li {
        line-height: 1.8;
    }
}

/* Flexible layout for badge items */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Individual badge item */
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

/* Badge icon */
.badge-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

/* Responsive badge sizing */
@media (max-width: 576px) {
    .badge-item {
        font-size: 0.85rem;
        padding: 0.55rem 0.8rem;
    }

    .badge-item img {
        width: 20px;
        height: 20px;
    }
}

/* Primary text link styling */
.text-link {
    color: var(--primary);
    text-decoration: none;
}

/* Primary text link hover state */
.text-link:hover {
    color: var(--primary-dark);
}