/**
 * ==================================================
 * EQUIPMENT
 * ==================================================
 * Theme: Aicher Teeladen
 *
 * Equipment section styles.
 *
 * This file contains the complete styling for the
 * equipment section, including:
 *
 * - Equipment Cover
 * - Equipment Content
 * - Equipment Kicker
 * - Equipment Title
 * - Equipment Divider
 * - Equipment Text
 * - Equipment Button
 * ==================================================
 */

/* ==========================================================
   Page Content
   ========================================================== */

.page-content {
    width: 100%;
    max-width: var(--wp--style--global--content-size);
    margin-inline: auto;

    padding-block: 2rem 2rem;
}

@media (max-width: 480px) {

    .page-content p{
        width: 100%;
        max-width: var(--wp--style--global--content-size);
        margin-inline: auto;
        padding-block: 2rem 2rem;
    }

    .page-content h1 {
        font-size: 2.2rem !important;
    }

    .page-content h2 {
        font-size: 1.7rem !important;
    }

    .page-content h3 {
        font-size: 1.4rem !important;
    }

}

/* ==========================================================
   Page Typography
   ========================================================== */

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: var(--wp--preset--font-family--heading);
    color: var(--wp--preset--color--foreground);
}

/* Page Title */

.page-content h1 {
    margin: 0 0 2.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

/* Section Headings */

.page-content h2 {
    margin: 2.75rem 0 1rem;
    font-size: 2rem;
    line-height: 1.3;
}

.page-content h3 {
    margin: 2.25rem 0 0.75rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.page-content h4 {
    margin: 2rem 0 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

/* Body Text */

.page-content p {
    margin: 0 0 1rem;
}

/* ==========================================================
   Page Links
   ========================================================== */

.page-content a {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    transition: color .25s ease;
}

.page-content a:hover {
    color: var(--wp--preset--color--accent);
}