/* Sections – mobile-first */
.sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 20px 0;
}

/* Section cards */
.section-card {
    background: #fff;
    border: 1px solid #ca8a04;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
}

/* Headings and text */
.section-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; }
.section-card p  { margin: 0; font-size: 14px; color: #6b7280; }

/* Link pills */
.link-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
    padding: 8px 10px;
    border: 1px solid #ca8a04;
    border-radius: 999px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}
.pill-label { display: inline; }

/* Mobile: hide labels, keep only icons */
@media (max-width: 768px) {
    .pill-label { display: none; }
    .pill { justify-content: center; padding: 10px; }
}

/* QR block */
.qr-code {
    margin-top: 12px;
    text-align: left;
}
.qr-code img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.qr-code p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ca8a04;
    letter-spacing: 0.5px;
}

/* Desktop grid layout – auto-fit to avoid gaps */
@media (min-width: 1024px) {
    .sections {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        align-items: start;
    }
}
