/* Callout box on the pub quiz category page that promotes the Pub Team
   Names generator. Auto-loaded sitewide via content/custom/css/ but only
   matches the .ptn-callout markup which exists on the pub hub page. */

.ptn-callout {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid #f59e0b;
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    text-align: center;
}
.ptn-callout-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.35rem;
}
.ptn-callout p {
    color: #78350f;
    margin: 0.25rem 0;
}
.ptn-callout-btn {
    display: inline-block;
    margin-top: 0.85rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(217, 119, 6, 0.35);
    transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
.ptn-callout-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 6px 14px rgba(217, 119, 6, 0.45);
}
.ptn-callout-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
}
.ptn-callout-btn:focus-visible {
    outline: 3px solid rgba(217, 119, 6, 0.5);
    outline-offset: 3px;
}

/* Dark theme friendliness */
[data-theme="dark"] .ptn-callout {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.35), rgba(146, 64, 14, 0.45));
    border-color: #f59e0b;
}
[data-theme="dark"] .ptn-callout-title,
[data-theme="dark"] .ptn-callout p {
    color: #fde68a;
}
