/* PatsFans 2026 — News Source Buttons
   These styles complement style.css .pf-btn classes
   and maintain backwards compatibility with pf-google-news-button / pf-apple-news-button classes */

.pf-google-news-button,
a.pf-google-news-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #dde0e3;
    border-radius: 5px;
    padding: 6px 13px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s;
}

.pf-google-news-button:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    text-decoration: none;
}

.pf-apple-news-button,
a.pf-apple-news-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1c1c1e;
    border: 1px solid #1c1c1e;
    border-radius: 5px;
    padding: 6px 13px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.pf-apple-news-button:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: none;
}

.pf-apple-news-button img,
.pf-google-news-button img {
    width: 18px;
    height: auto;
    flex-shrink: 0;
}
