/* ==========================================================================
   PolyHomes — interior page components
   about.php · services.php · testimonials.php · contact.php · properties.php
   · download.php · legal pages · thank-you · 404

   These class names were specified in the original build notes but never
   written, which is why every page except the homepage rendered unstyled.
   ========================================================================== */

/* ============================ SHARED ============================ */

.ph-light-section {
    background: var(--white);
    color: var(--ink);
    padding: 2.8rem 0;
}

.ph-tint-section {
    background: var(--off-white);
    color: var(--ink);
    padding: 2.8rem 0;
}

.ph-light-section h2,
.ph-tint-section h2 {
    color: var(--ink);
}

.ph-prose {
    max-width: 46rem;
}

.ph-prose p {
    color: var(--ink-soft);
    font-size: var(--fs-md);
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.ph-prose p:last-child {
    margin-bottom: 0;
}

.ph-prose-centered {
    margin-inline: auto;
    text-align: center;
}

/* ============================ PRICING ============================ */

.ph-price-hero {
    display: grid;
    gap: 1.8rem;
    align-items: center;
    padding: 1.9rem;
    background: var(--card-grey);
    border-radius: var(--radius-lg);
}

.ph-price-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 1.2rem;
    background: var(--bg-deep);
    border-radius: var(--radius-md);
    color: var(--white);
    text-align: center;
}

.ph-price-figure .num {
    font-size: clamp(3rem, 12vw, 4.4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gold-soft);
}

.ph-price-figure .cap {
    margin-top: 0.45rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.ph-price-hero .ph-btn {
    margin-top: 1.3rem;
}

/* Plan tiers. Unused until the client supplies the tiers and pricing.php
   flips PRICING_TIERS_READY - kept here so the page is ready to switch on. */
.ph-plan-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.ph-plan-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.5rem;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
}

.ph-plan-card.is-featured {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.ph-plan-card h3 {
    font-size: var(--fs-lg);
    color: var(--ink);
}

.ph-plan-price {
    margin: 0.5rem 0 0.2rem;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 800;
    color: var(--bg-deep);
    line-height: 1.1;
}

.ph-plan-desc {
    color: var(--ink-mute);
    font-size: var(--fs-base);
    margin-bottom: 1.1rem;
}

.ph-plan-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.ph-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: var(--fs-base);
    line-height: 1.5;
    color: var(--ink-soft);
}

.ph-plan-list i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* Push the button to the bottom so cards of unequal length still line up. */
.ph-plan-card .ph-btn {
    margin-top: auto;
}

/* ======================= AFFILIATE EARNINGS ======================= */

.ph-earn-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.ph-earn-card {
    padding: 1.7rem 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--gold);
}

.ph-earn-tag {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: var(--bg-deep);
    color: var(--gold-soft);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ph-earn-card h3 {
    font-size: var(--fs-lg);
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.ph-earn-card p {
    color: var(--ink-soft);
    font-size: var(--fs-base);
    line-height: 1.65;
}

/* Rate table. Wide content must scroll inside its own box rather than push
   the page sideways on a phone. */
.ph-rate-table-wrap {
    margin-top: 1.8rem;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-dark);
}

.ph-rate-table {
    width: 100%;
    min-width: 34rem;
    border-collapse: collapse;
    background: var(--white);
    font-size: var(--fs-base);
}

.ph-rate-table caption {
    caption-side: bottom;
    padding: 0.9rem 1rem;
    color: var(--ink-mute);
    font-size: var(--fs-sm);
    text-align: left;
}

.ph-rate-table th,
.ph-rate-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line-dark);
    vertical-align: top;
}

.ph-rate-table thead th {
    background: var(--bg-deep);
    color: var(--white);
    font-size: var(--fs-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 0;
}

.ph-rate-table tbody th {
    color: var(--ink);
    font-weight: 700;
}

.ph-rate-table tbody td {
    color: var(--bg-deep);
    font-weight: 700;
}

.ph-rate-table .unit {
    display: block;
    font-weight: 400;
    font-size: var(--fs-sm);
    color: var(--ink-mute);
}

.ph-rate-note {
    display: block;
    margin-top: 0.2rem;
    font-weight: 400;
    font-size: var(--fs-sm);
    color: var(--ink-mute);
}

.ph-rate-table tbody tr:last-child th,
.ph-rate-table tbody tr:last-child td {
    border-bottom: 0;
}

/* Affiliate application form. Narrower than the section so the fields stay a
   comfortable reading width on a desktop, and centred under the heading. */
.ph-apply-wrap {
    max-width: 48rem;
    margin: 1.8rem auto 0;
    /* The page's own anchor link lands here, so keep the sticky header from
       covering the top of the form. */
    scroll-margin-top: 6rem;
}

.ph-apply-alt {
    margin-top: 1.2rem;
    text-align: center;
}

/* Slim teaser on affiliates.php - the form itself now lives on
   affiliate-apply.php, this just points there. */
.ph-apply-teaser {
    text-align: center;
}

/* Homepage affiliate band */
.ph-affiliate-band {
    display: grid;
    gap: 1.4rem;
    align-items: center;
    padding: 1.8rem;
    background: var(--card-grey);
    border-radius: var(--radius-lg);
}

.ph-affiliate-band .ph-prose p {
    margin-bottom: 0;
}

.ph-affiliate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ph-affiliate-actions .ph-btn {
    flex: 1 1 12rem;
}

@media (min-width: 768px) {
    .ph-price-hero {
        grid-template-columns: 15rem 1fr;
        padding: 2.4rem;
    }

    .ph-affiliate-band {
        grid-template-columns: 1fr auto;
        padding: 2.2rem 2.4rem;
    }

    .ph-affiliate-actions .ph-btn {
        flex: 0 0 auto;
    }
}

.ph-divider {
    width: 4rem;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 1.6rem;
    border: 0;
}

.ph-section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

/* ============================= ABOUT ============================= */

.about-grid {
    display: grid;
    gap: 1.8rem;
    align-items: center;
}

.about-grid img {
    width: 100%;
    height: 100%;
    max-height: 24rem;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-stats div {
    text-align: center;
    padding: 1.1rem 0.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.about-stats strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-deep);
}

.about-stats span {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-mute);
}

/* value / mission cards */
.feature-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(16, 16, 16, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.3rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-deep);
    color: var(--gold-soft);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: var(--fs-lg);
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    line-height: 1.6;
}

/* team */
.team-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.team-card {
    text-align: center;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1rem;
}

.team-card img {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

/* Stand-in for a portrait that has not been saved into assets/img/people yet.
   Same footprint as .team-card img so the grid does not reflow when the real
   photograph is dropped in. */
.team-avatar-fallback {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid;
    place-content: center;
    background: var(--bg-deep);
    color: var(--gold-soft);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.team-card h3 {
    font-size: var(--fs-md);
    color: var(--ink);
}

.team-card span {
    display: block;
    font-size: var(--fs-sm);
    color: var(--ink-mute);
    margin-bottom: 0.8rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-socials a {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bg-deep);
    color: var(--white);
    display: grid;
    place-content: center;
    font-size: var(--fs-sm);
    transition: background 0.2s ease;
}

.team-socials a:hover {
    background: var(--gold);
    color: var(--on-gold);
}

/* ============================ SERVICES ============================ */

.services-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(16, 16, 16, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
}

.service-info {
    padding: 1.3rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-lg);
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.service-info h3 i {
    color: var(--gold);
}

.service-info p {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-info a {
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bg-deep);
}

.service-info a i {
    margin-left: 0.35rem;
}

.service-info a:hover {
    color: var(--gold);
}

/* ========================== TESTIMONIALS ========================== */

.testimonial-slider {
    position: relative;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.4rem;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.testimonial-slide.active {
    display: flex;
}

.testimonial-slide img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-slide blockquote {
    font-size: var(--fs-md);
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 42rem;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 700;
    color: var(--ink);
}

.testimonial-slide .role {
    font-size: var(--fs-sm);
    color: var(--ink-mute);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid var(--bg-deep);
    background: transparent;
    color: var(--bg-deep);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
    background: var(--bg-deep);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.4rem;
}

.slider-dots button {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 0;
    background: rgba(16, 16, 16, 0.25);
    cursor: pointer;
    padding: 0;
}

.slider-dots button.active {
    background: var(--gold);
}

.testimonial-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.testimonial-mini {
    background: var(--white);
    border: 1px solid rgba(16, 16, 16, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
}

.testimonial-mini p {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.testimonial-mini .who {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-mini img {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-mini strong {
    display: block;
    font-size: var(--fs-base);
    color: var(--ink);
}

.testimonial-mini span {
    font-size: var(--fs-xs);
    color: var(--ink-mute);
}

/* ============================ CONTACT ============================ */

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid rgba(16, 16, 16, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem 1.8rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
}

.contact-detail:last-of-type {
    border-bottom: 0;
}

.contact-detail i {
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--bg-deep);
    color: var(--gold-soft);
    display: grid;
    place-content: center;
}

.contact-detail h3 {
    font-size: var(--fs-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-mute);
    margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
    font-size: var(--fs-md);
    color: var(--ink);
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.3rem;
}

.contact-socials a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-md);
    background: var(--bg-deep);
    color: var(--white);
    display: grid;
    place-content: center;
    transition: background 0.2s ease;
}

.contact-socials a:hover {
    background: var(--gold);
    color: var(--on-gold);
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(16, 16, 16, 0.12);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 16rem;
    border: 0;
}

/* =========================== PROPERTIES =========================== */

.ph-filter-bar {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.ph-search-row {
    display: flex;
    gap: 0.6rem;
}

.ph-search-row .ph-input {
    flex: 1;
}

.ph-chip-row {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
}

.ph-chip-row::-webkit-scrollbar {
    display: none;
}

.ph-chip {
    flex: 0 0 auto;
    border: 1px solid rgba(16, 16, 16, 0.22);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ph-chip:hover {
    border-color: var(--gold);
}

.ph-chip.active {
    background: var(--bg-deep);
    border-color: var(--bg-deep);
    color: var(--white);
}

.ph-result-count {
    font-size: var(--fs-base);
    color: var(--ink-mute);
    margin-bottom: 1.2rem;
}

.ph-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--ink-mute);
}

.ph-empty-state i {
    font-size: 2.4rem;
    color: rgba(16, 16, 16, 0.2);
    margin-bottom: 1rem;
    display: block;
}

.ph-property-card.is-hidden {
    display: none;
}

/* ============================ DOWNLOAD ============================ */

.ph-app-hero {
    background: var(--bg-deep);
    padding: 3rem 0;
    text-align: center;
}

.ph-app-hero h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.ph-app-hero p {
    color: var(--muted);
    font-size: var(--fs-md);
    line-height: 1.65;
    max-width: 34rem;
    margin: 0 auto 2rem;
}

.ph-app-features {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    margin-top: 2.5rem;
}

.ph-app-feature {
    background: var(--bg-deep-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem;
    text-align: left;
}

.ph-app-feature i {
    color: var(--gold-soft);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.ph-app-feature h3 {
    font-size: var(--fs-md);
    color: var(--white);
    margin-bottom: 0.4rem;
}

.ph-app-feature p {
    font-size: var(--fs-base);
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ============================== LEGAL ============================== */

.legal-body {
    max-width: 48rem;
}

.legal-body h2 {
    font-size: var(--fs-xl);
    color: var(--ink);
    margin: 2rem 0 0.75rem;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: var(--fs-lg);
    color: var(--ink);
    margin: 1.4rem 0 0.5rem;
}

.legal-body p,
.legal-body li {
    font-size: var(--fs-md);
    color: var(--ink-soft);
    line-height: 1.75;
}

.legal-body p {
    margin-bottom: 1rem;
}

.legal-body ul,
.legal-body ol {
    margin: 0 0 1.2rem 1.3rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: var(--fs-sm);
    color: var(--ink-mute);
    padding-bottom: 1.4rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(16, 16, 16, 0.12);
}

.legal-toc {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.3rem;
    margin-bottom: 2rem;
}

.legal-toc h2 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.7rem;
}

.legal-toc ol {
    margin: 0 0 0 1.1rem;
}

.legal-toc a {
    color: var(--bg-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-toc a:hover {
    color: var(--gold);
}

/* ====================== THANK YOU / 404 ====================== */

.ph-message-page {
    background: var(--white);
    color: var(--ink);
    padding: 3.5rem 0 4rem;
    text-align: center;
}

.ph-message-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin: 0 auto 1.4rem;
    font-size: 1.8rem;
    background: var(--success-soft);
    color: var(--success);
}

.ph-message-icon.warn {
    background: var(--danger-soft);
    color: var(--danger);
}

.ph-message-page h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.ph-message-page > .container > p {
    color: var(--ink-soft);
    font-size: var(--fs-md);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 1.6rem;
}

.ph-message-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.ph-next-steps {
    max-width: 34rem;
    margin: 2.5rem auto 0;
    text-align: left;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.4rem;
}

.ph-next-steps h2 {
    font-size: var(--fs-md);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.ph-next-steps ol {
    margin-left: 1.1rem;
}

.ph-next-steps li {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

/* ============================ DESKTOP ============================ */

@media (min-width: 900px) {
    .ph-light-section,
    .ph-tint-section {
        padding-block: 4.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
        align-items: start;
    }

    .contact-form-wrap {
        padding: 2.2rem 2rem 2.4rem;
    }

    .testimonial-slider {
        padding: 3rem 2.5rem;
    }

    .ph-filter-bar {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .ph-app-hero {
        padding-block: 5rem;
    }

    .ph-message-page {
        padding-block: 5.5rem 6rem;
    }
}
