/* =============================================================================
   ENGAGE / FOLLOW US - Social media channels page (/news)
============================================================================= */

/* --- Hero — dark centered section with platform pills --- */
.en-ha {
    background: linear-gradient(135deg, #1a2e10 0%, #14161A 50%, #0e1012 100%);
    padding: 6rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}
.en-ha::before {
    content: '';
    position: absolute; top: -120px; left: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,185,62,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.en-ha::after {
    content: '';
    position: absolute; bottom: -100px; right: -100px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,185,62,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.en-ha-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    padding-left: 14px;
    margin-bottom: 1.5rem;
}
.en-ha-title {
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.en-ha-title span { color: var(--primary-green); }
.en-ha-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 2.75rem;
}
.en-ha-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.65rem;
}
.en-ha-pill {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.88rem; font-weight: 500;
    color: #fff; text-decoration: none;
    padding: 0.6rem 1.2rem; border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.en-ha-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.35); color: #fff; }
.en-ha-pill-li { background: #0A66C2; }
.en-ha-pill-yt { background: #FF0000; }
.en-ha-pill-x  { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.15); }
.en-ha-pill-fb { background: #1877F2; }
.en-ha-pill-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.en-ha-pill-pt { background: #E60023; }

/* --- Platform cards --- */
.en-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.6rem 1.75rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.en-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}
.en-card-head {
    display: flex; align-items: center; gap: 0.85rem;
    margin-bottom: 1rem;
}
.en-card-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #fff;
    flex-shrink: 0;
}
.en-card-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.en-card-platform {
    font-size: 0.95rem; font-weight: 500;
    color: var(--navbar-bg); line-height: 1;
}
.en-card-handle {
    font-size: 0.75rem; color: #aaa; font-weight: 400;
}
.en-card-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.68rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--en-card-color, var(--primary-green));
    background: color-mix(in srgb, var(--en-card-color, var(--primary-green)) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--en-card-color, var(--primary-green)) 25%, transparent);
    border-radius: 20px; padding: 0.22rem 0.6rem;
    margin-bottom: 0.75rem; align-self: flex-start;
}
.en-card-desc {
    font-size: 0.875rem; color: var(--text-secondary);
    line-height: 1.65; flex: 1; margin-bottom: 1.1rem;
}
.en-card-chips {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.en-chip {
    font-size: 0.7rem; font-weight: 500;
    color: var(--text-secondary);
    background: #f3f4f6;
    border-radius: 20px; padding: 0.2rem 0.6rem;
    white-space: nowrap;
}
.en-card-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; font-weight: 500;
    color: #fff;
    background: var(--en-card-color, var(--navbar-bg));
    border: none;
    border-radius: var(--btn-radius); padding: 0.5rem 1rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    align-self: flex-start;
}
.en-card-btn:hover { opacity: 0.85; color: #fff; transform: translateX(2px); }

/* --- YouTube section --- */
.en-yt-wrap {
    background: var(--navbar-bg);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    overflow: hidden;
    position: relative;
}
.en-yt-wrap::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(123,185,62,0.07);
    pointer-events: none;
}
.en-yt-wrap::after {
    content: '';
    position: absolute; bottom: -50px; left: 180px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,0,0,0.05);
    pointer-events: none;
}
.en-yt-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,0,0,0.15); color: #ff7070;
    font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.28rem 0.7rem; border-radius: 20px;
    margin-bottom: 1rem;
}
.en-yt-title {
    color: #ffffff; font-size: 1.9rem;
    font-weight: 300; line-height: 1.25;
    margin-bottom: 0.9rem;
}
.en-yt-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem; line-height: 1.7;
    margin-bottom: 1.4rem;
}
.en-yt-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.en-yt-list li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.7);
    margin-bottom: 0.45rem;
}
.en-yt-list li i { color: var(--primary-green); flex-shrink: 0; width: 14px; }
.en-yt-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.en-btn-subscribe {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #FF0000; color: #fff;
    font-weight: 500; font-size: 0.88rem;
    padding: 0.7rem 1.4rem; border-radius: var(--btn-radius);
    text-decoration: none;
    transition: background 0.2s;
}
.en-btn-subscribe:hover { background: #cc0000; color: #fff; }
.en-btn-live {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08); color: #fff;
    font-weight: 500; font-size: 0.88rem;
    padding: 0.7rem 1.4rem; border-radius: var(--btn-radius);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s;
}
.en-btn-live:hover { background: rgba(255,255,255,0.15); color: #fff; }
.en-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #ff4444; display: inline-block;
    animation: en-blink 1.5s ease-in-out infinite;
}
@keyframes en-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.en-yt-panel {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem; height: 100%;
}
.en-yt-icon-circle {
    width: 110px; height: 110px; border-radius: 50%;
    background: rgba(255,0,0,0.13);
    display: flex; align-items: center; justify-content: center;
}
.en-yt-icon-circle i { font-size: 3.5rem; color: #ff6b6b; }
.en-cc-card {
    background: rgba(123,185,62,0.1);
    border: 1px solid rgba(123,185,62,0.22);
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    width: 100%; text-align: center;
}
.en-cc-label {
    font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--primary-green); margin-bottom: 0.3rem;
}
.en-cc-card p {
    font-size: 0.82rem; color: rgba(255,255,255,0.7);
    line-height: 1.55; margin: 0;
}

/* --- CTA strip --- */
.en-cta {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.en-cta-text h3 {
    font-size: 1.3rem; font-weight: 500;
    color: var(--navbar-bg); margin-bottom: 0.3rem;
}
.en-cta-text p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* --- Responsive --- */
@media screen and (max-width: 768px) {
    /* Hero centering — en-ha is a non-columns centered hero */
    .en-ha { text-align: center; }
    .en-ha-label {
        border-left: none;
        border-bottom: 1px solid var(--primary-green);
        padding-left: 0;
        padding-bottom: 6px;
    }
    .en-ha-sub { max-width: 100%; text-align: center; }
    .en-ha-pills { justify-content: center; }

    .en-ha-title { font-size: 2rem; }
    .en-yt-wrap { padding: 2rem 1.5rem; }
    .en-yt-title { font-size: 1.4rem; }
    .en-cta { padding: 1.75rem; text-align: center; justify-content: center; }
}
