.pub-faq-actions {
    padding-top: 18px;
    text-align: right;
}

.pub-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.pub-btn--continue {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff !important;
    border-color: #28a745;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pub-btn--continue:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    border-color: #17a2b8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.pub-btn--continue:focus,
.pub-btn--continue:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.24), 0 2px 8px rgba(40, 167, 69, 0.3);
}

.pub-btn--continue:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pub-faq-actions {
        text-align: center;
        padding-top: 22px;
    }

    .pub-faq-actions .pub-btn {
        width: auto;
        min-width: 160px;
    }
}

