/* Shared styles for the public podcast pages (archive + single).
   Sizes are px on purpose: the theme's Bootstrap 3 sets html{font-size:10px},
   so rem values render at the wrong scale here. */

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

.hvp-links__item {
    display: inline-block;
    padding: 9px 18px;
    border: 1px solid #d3d7dd;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #1c2733;
    text-decoration: none;
    background: #fff;
    transition: border-color .15s ease, background-color .15s ease;
}

.hvp-links__item:hover,
.hvp-links__item:focus {
    background: #f4f6f8;
    border-color: #9aa3ad;
    color: #1c2733;
    text-decoration: none;
}
