/* ===========================
   PAGE WRAPPER
   =========================== */

.community-form {
    margin: 3rem auto;
}

/* ===========================
   HEADINGS & TEXT
   =========================== */

.community-form h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.notice {
    font-style: italic;
    opacity: 0.85;
}

/* ===========================
   COMMUNITY HIGHLIGHTS
   =========================== */

.community-highlight {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.highlight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.highlight-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content h2 {
    margin-bottom: 0.75rem;
}

.highlight-content p {
    margin-bottom: 1.5rem;
}

/* CTA button */
.highlight-btn {
    display: inline-block;
    background-color: var(--golden-yellow);
    color: var(--black);
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.highlight-btn:hover {
    opacity: 0.9;
}

/* ===========================
   DOWNLOAD SECTION
   =========================== */

.download-section {
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 8px;
}

.download-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.instructions-list {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.instructions-list li {
    margin-bottom: 0.5rem;
}

.download-btn {
    background-color: var(--golden-yellow);
    color: var(--black);
    font-weight: bold;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s ease;
}

.download-btn:hover {
    opacity: 0.9;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */

@media (max-width: 768px) {

    .highlight-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-btn {
        margin: 0 auto;
    }
}
