/* ==============================================================================
   1. КАРТОЧКИ НОВОСТЕЙ С ЭФФЕКТОМ ВОЛНЫ (ВИНДСЕРФИНГ)
   ============================================================================== */
article.entry-card,
article.entry-card .ct-media-container {
    border-radius: 36px 4px 36px 4px !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease !important;
}
article.entry-card:hover {
    transform: translateY(-5px) scale(1.015) rotate(0.8deg) !important; /* Покачивание */
    box-shadow: 0 20px 40px rgba(41, 128, 185, 0.15) !important;
}

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

/* Подзаголовки h2 и h3 Гутенберга */
.entry-content h2.wp-block-heading,
.entry-content h3.wp-block-heading {
    font-weight: 800 !important;
    color: #1e3d59 !important;
    margin-top: 1.8em !important;
    margin-bottom: 0.8em !important;
    position: relative !important;
    padding-left: 22px !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: 10px !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: 24px !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: 5px !important;
    top: 10px !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #1abc9c !important; /* Бирюзовая капля */
    border-radius: 50% !important;
}

/* Морские ссылки в тексте */
.entry-content a {
    color: #1abc9c !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(26, 188, 156, 0.2) !important;
    transition: all 0.2s ease !important;
    font-weight: 600 !important;
}
.entry-content a:hover {
    color: #16a085 !important;
    border-bottom-color: #16a085 !important;
    background-color: rgba(26, 188, 156, 0.05) !important;
}
