/* ==============================================================================
   1. КАРТОЧКИ НОВОСТЕЙ И ЭФФЕКТЫ (ХОККЕЙ)
   ============================================================================== */
article.entry-card {
    border-radius: 4px !important;
    border: 1px solid rgba(149, 165, 166, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
article.entry-card:hover {
    border-color: #3498db !important;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3) !important;
}

/* ==============================================================================
   2. ТИПОГРАФИКА И ВНУТРЕННИЙ КОНТЕНТ СТАТЕЙ (ХОККЕЙ)
   ============================================================================== */

/* Подзаголовки h2 и h3 Гутенберга */
.entry-content h2.wp-block-heading,
.entry-content h3.wp-block-heading {
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 1.8em !important;
    margin-bottom: 0.8em !important;
    position: relative !important;
    padding-left: 20px !important;
    color: #2c3e50 !important;
}

/* Маркер заголовка — льдисто-синий неоновый прямоугольник */
.entry-content h2.wp-block-heading::before,
.entry-content h3.wp-block-heading::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 20% !important;
    height: 60% !important;
    width: 5px !important;
    background-color: #3498db !important;
    border-radius: 1px !important;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.6) !important;
}

/* Спискам убираем точки */
.entry-content ul {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
}
.entry-content ul li {
    position: relative !important;
    padding-left: 26px !important;
    margin-bottom: 12px !important;
    line-height: 1.6 !important;
}
.entry-content ul li::marker { content: "" !important; }

/* Кастомный маркер-шайба: наклонный синий прямоугольник */
.entry-content ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 4px !important;
    top: 10px !important;
    width: 8px !important;
    height: 5px !important;
    background-color: #3498db !important;
    transform: skewX(-20deg) !important; /* Наклон для динамики */
}

/* Ссылки внутри текста (ледяная подсветка) */
.entry-content a {
    color: #2980b9 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(41, 128, 185, 0.2) !important;
    transition: all 0.2s ease !important;
    font-weight: 600 !important;
}
.entry-content a:hover {
    color: #3498db !important;
    border-bottom-color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.05) !important;
}
