/* lists.css */

.bullets {
    margin: 12px 0 0;
    padding-left: 16px;
    color: rgba(31, 41, 55, 0.72);
}

.bullets li {
    margin: 6px 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
}

.tags li {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255, 200, 221, 0.22);
    color: rgba(31, 41, 55, 0.75);
    font-size: 12px;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    font-size: 14px;
}

.contact-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.09);
}

.quick-links {
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0 0 1.25rem;
    list-style: none;
}

.quick-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
}

.quick-links a:hover {
    text-decoration: underline;
}