.hero {
     text-align: center;
     padding: 2.5rem 0 1.25rem;
}

.hero img {
     border-radius: 3px;
}

.hero h1 {
     margin: 0 0 .5rem;
     font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hero p {
     margin: .25rem 0 .75rem;
     color: var(--muted);
     /* from theme.css */
}

.badges {
     display: flex;
     flex-wrap: wrap;
     gap: .5rem;
     justify-content: center;
     margin: .75rem 0 1.5rem;
}

.badges img {
     border-radius: 3px;
}

.quick-links {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: .75rem;
     margin: 1.25rem 0 2rem;
}

.card {
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: .9rem 1rem;
     background: var(--panel);
     margin-bottom: 5px;
     transition: box-shadow 0.2s ease-in-out, transform 0.15s ease;
}

.card:hover {
     box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
     transform: translateY(-1px);
}

.card h3 {
     margin: .1rem 0 .5rem;
     font-size: 1rem;
     color: var(--text);
}

.link-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-top: 0.4rem;
     list-style: none;
}

.link-btn {
     display: inline-block;
     padding: 0.35rem 0.7rem;
     background: var(--panel);
     color: var(--text);
     border: 1px solid var(--border);
     border-radius: 999px;
     /* pill shape */
     font-size: 0.85rem;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.2s ease;
}

.link-btn:hover {
     background: var(--accent);
     color: #fff;
     border-color: var(--accent-600);
}

.link-btn:active {
     background: var(--accent-600);
     color: #fff;
}