/* Кнопки и акценты в стиле теннисного мяча */
.ct-container a:hover, 
.entry-button,
#main-container .btn-primary,
input[type="submit"] {
    background-color: #ccff00 !important; /* Неоново-желтый */
    color: #1e4620 !important; /* Темно-зеленый текст для читаемости */
    font-weight: 700 !important;
    border-radius: 30px !important; /* Скругленные "спортивные" кнопки */
    transition: all 0.25s ease-in-out !important;
}

/* Эффект прыжка карточек в архиве (в тон вашим стилям) */
article.entry-card {
    border-bottom: 4px solid #1e4620;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease !important;
}
article.entry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 70, 32, 0.15) !important;
    border-bottom-color: #ccff00;
}

/* Бирюзово-зеленые теги / категории */
.ct-meta-element, .ct-term-item {
    background-color: #1e4620 !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
}
