/* ==========================================================
   Marquee by Gilawebsite.com v2.0
   CSS Animation Engine — 2-track seamless loop
   ========================================================== */

/* ── CSS variables defaults ── */
.mgw-marquee-container {
    --mgw-edge-color: #ffffff;
    --mgw-edge-size: 60px;
    --mgw-duration: 20s; /* set by JS */

    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    user-select: none;
}

/* ── Wrapper: 2 tracks side by side ── */
.mgw-marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 32px; /* overridden by Elementor control */
    width: 100%;
    /* No overflow hidden here — container handles it */
}

/* ── Each track ── */
.mgw-track {
    display: flex;
    align-items: center;
    gap: 32px; /* overridden by Elementor control */
    flex-shrink: 0;
    will-change: transform;
    /* Default: left direction */
    animation: mgwScrollLeft var(--mgw-duration) linear infinite;
}

/* ── Keyframes ── */
@keyframes mgwScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% - 32px)); }
}
@keyframes mgwScrollRight {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100% + 32px)); }
}
@keyframes mgwScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(calc(-100% - 32px)); }
}
@keyframes mgwScrollDown {
    from { transform: translateY(0); }
    to   { transform: translateY(calc(100% + 32px)); }
}

/* ── Direction variants ── */
.mgw-reverse .mgw-track {
    animation-name: mgwScrollRight;
}
.mgw-vertical.mgw-marquee-container {
    flex-direction: column;
}
.mgw-vertical .mgw-marquee-wrapper {
    flex-direction: column;
    width: auto;
    height: 100%;
    min-height: 300px;
    align-items: flex-start;
}
.mgw-vertical .mgw-track {
    flex-direction: column;
    width: 100%;
    animation-name: mgwScrollUp;
}
.mgw-vertical.mgw-reverse .mgw-track {
    animation-name: mgwScrollDown;
}

/* ── Pause on hover ── */
.mgw-pause-hover .mgw-marquee-wrapper:hover .mgw-track {
    animation-play-state: paused;
}

/* ── Edge shadow (box-shadow approach — warna boleh edit) ── */
.mgw-has-shadow::before,
.mgw-has-shadow::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* box-shadow trick: create a solid inner glow */
    box-shadow: 0 0 var(--mgw-edge-size) var(--mgw-edge-size) var(--mgw-edge-color);
}
.mgw-has-shadow::before { left: 0; }
.mgw-has-shadow::after  { right: 0; }

/* Vertical edge shadow */
.mgw-vertical.mgw-has-shadow::before,
.mgw-vertical.mgw-has-shadow::after {
    width: 100%;
    height: 0;
    left: 0;
}
.mgw-vertical.mgw-has-shadow::before { top: 0; }
.mgw-vertical.mgw-has-shadow::after  { top: auto; bottom: 0; box-shadow: 0 0 var(--mgw-edge-size) var(--mgw-edge-size) var(--mgw-edge-color); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .mgw-track { animation: none !important; }
}

/* ==========================================================
   1. TEXT MARQUEE
   ========================================================== */
.mgw-text-marquee-bar {
    display: flex;
    align-items: center;
    background: #003366;
    height: 48px;
    position: relative;
    overflow: hidden;
}
.mgw-text-marquee-bar .mgw-marquee-container {
    flex: 1;
    height: 100%;
}
.mgw-ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 100%;
    background: #CC0001;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
}
.mgw-ticker-label::after {
    content: '';
    position: absolute;
    right: -10px; top: 0;
    border-style: solid;
    border-width: 48px 0 0 10px;
    border-color: transparent transparent transparent #CC0001;
}
.mgw-text-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
}
.mgw-text-item a { color: inherit; text-decoration: none; transition: color .2s; }
.mgw-text-item a:hover { color: #FFD700; text-decoration: underline; }
.mgw-text-sep { color: #FFD700; }

/* ==========================================================
   2. IMAGE MARQUEE
   ========================================================== */
.mgw-img-item { display: inline-flex; align-items: center; }
.mgw-img-item img { height: 60px; width: auto; object-fit: contain; display: block; }

/* ==========================================================
   3. CARD MARQUEE
   ========================================================== */
.mgw-card-item {
    display: inline-flex;
    flex-direction: column;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}
.mgw-card-item:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.14); }
.mgw-card-img { position: relative; overflow: hidden; }
.mgw-card-img img { width: 100%; display: block; object-fit: cover; transition: transform .4s; }
.mgw-card-item:hover .mgw-card-img img { transform: scale(1.05); }
.mgw-card-icon-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#003366,#1a5276); color: rgba(255,255,255,.3); font-size: 40px; }
.mgw-card-badge { position: absolute; top: 10px; left: 10px; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; }
.mgw-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.mgw-card-title { font-size: 15px; font-weight: 700; margin: 0; line-height: 1.4; }
.mgw-card-title a { color: inherit; text-decoration: none; }
.mgw-card-title a:hover { color: #003366; }
.mgw-card-desc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ==========================================================
   4. TESTIMONIAL
   ========================================================== */
.mgw-testi-card {
    display: inline-flex;
    flex-direction: column;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    gap: 12px;
    transition: transform .3s, box-shadow .3s;
}
.mgw-testi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.mgw-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.mgw-testi-quote { font-size: 14px; color: #333; line-height: 1.65; margin: 0; font-style: italic; }
.mgw-testi-author { display: flex; align-items: center; gap: 12px; }
.mgw-testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.mgw-testi-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: #003366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.mgw-testi-name { display: block; font-weight: 700; font-size: 14px; color: #003366; }
.mgw-testi-role { display: block; font-size: 12px; color: #888; margin-top: 2px; }

/* Adv Testi */
.mgw-adv-testi-wrapper { display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.mgw-adv-testi-card {
    display: inline-flex; flex-direction: column;
    width: 320px; background: #fff; border: 1px solid #e8eef5;
    border-radius: 12px; padding: 18px; flex-shrink: 0; gap: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s;
}
.mgw-adv-testi-card:hover { transform: translateY(-3px); }
.mgw-adv-testi-top { display: flex; align-items: center; justify-content: space-between; }
.mgw-adv-platform { font-size: 20px; }

/* ==========================================================
   5. NEWS TICKER
   ========================================================== */
.mgw-news-bar {
    display: flex; align-items: center;
    height: 46px; background: #1a1a2e; overflow: hidden;
}
.mgw-news-bar .mgw-marquee-container { flex: 1; height: 100%; }
.mgw-news-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 14px; color: #f0f0f0; }
.mgw-news-item a { color: inherit; text-decoration: none; transition: color .2s; }
.mgw-news-item a:hover { color: #FFD700; }
.mgw-news-badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.mgw-news-date { color: #999; font-size: 11px; }
.mgw-news-sep { color: rgba(255,255,255,.3); }

/* ==========================================================
   6. BUTTON MARQUEE
   ========================================================== */
.mgw-btn-item { display: inline-flex; align-items: center; }
.mgw-btn-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 6px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.mgw-btn-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }

/* ==========================================================
   7. VIDEO MARQUEE
   ========================================================== */
.mgw-video-item {
    display: inline-block; border-radius: 8px; overflow: hidden;
    flex-shrink: 0; background: #000; position: relative;
}
.mgw-video-thumb { position: relative; cursor: pointer; }
.mgw-video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: opacity .3s; }
.mgw-video-thumb:hover img { opacity: .8; }
.mgw-video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 48px; height: 48px; background: rgba(255,255,255,.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #CC0001; transition: transform .2s;
}
.mgw-video-thumb:hover .mgw-video-play { transform: translate(-50%,-50%) scale(1.1); }
.mgw-video-embed { display: none; }
.mgw-video-embed iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.mgw-video-caption { font-size: 13px; color: #333; padding: 8px 10px; margin: 0; background: #f8f9fa; }

/* ==========================================================
   8. MEDIA MARQUEE
   ========================================================== */
.mgw-media-item {
    display: inline-block; border-radius: 10px; overflow: hidden;
    flex-shrink: 0; position: relative; background: #e8eef5;
}
.mgw-media-item img, .mgw-media-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mgw-media-overlay {
    position: absolute; inset: 0; background: rgba(0,51,102,.6);
    opacity: 0; transition: opacity .3s; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
    color: #fff; gap: 6px; padding: 12px; text-align: center;
}
.mgw-media-item:hover .mgw-media-overlay { opacity: 1; }

/* ==========================================================
   9. YOUTUBE SHORTS
   ========================================================== */
.mgw-yt-card { display: inline-flex; flex-direction: column; width: 180px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: #000; }
.mgw-yt-thumb { position: relative; }
.mgw-yt-thumb img { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; transition: opacity .3s; }
.mgw-yt-thumb-link:hover .mgw-yt-thumb img { opacity: .8; }
.mgw-yt-badge { position: absolute; top: 8px; right: 8px; background: #FF0000; color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.mgw-yt-play { position: absolute; bottom: 10px; left: 10px; background: rgba(255,255,255,.9); color: #FF0000; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.mgw-yt-title { font-size: 12px; color: #fff; padding: 6px 10px; margin: 0; background: #111; line-height: 1.4; }

/* ==========================================================
   10. INSTAGRAM
   ========================================================== */
.mgw-ig-item { display: inline-block; border-radius: 10px; overflow: hidden; flex-shrink: 0; position: relative; }
.mgw-ig-item a { display: block; width: 100%; height: 100%; }
.mgw-ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.mgw-ig-item:hover img { transform: scale(1.06); }
.mgw-ig-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.7)); opacity: 0; transition: opacity .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; }
.mgw-ig-item:hover .mgw-ig-overlay { opacity: 1; }
.mgw-ig-likes { color: #fff; font-size: 13px; font-weight: 600; }
.mgw-ig-likes i { color: #ff4757; margin-right: 4px; }
.mgw-ig-caption { color: rgba(255,255,255,.85); font-size: 12px; margin: 4px 0 0; line-height: 1.4; }

/* ==========================================================
   11. TIKTOK
   ========================================================== */
.mgw-tt-card { display: inline-block; flex-shrink: 0; border-radius: 14px; overflow: hidden; position: relative; }
.mgw-tt-link { display: block; width: 100%; height: 100%; }
.mgw-tt-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
.mgw-tt-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,.75)); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; gap: 6px; }
.mgw-tt-username { color: #fff; font-size: 13px; font-weight: 700; }
.mgw-tt-stats { display: flex; gap: 12px; }
.mgw-tt-stats span { color: rgba(255,255,255,.85); font-size: 12px; }
.mgw-tt-badge { position: absolute; top: 10px; right: 10px; color: #fff; font-size: 22px; filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)); }

/* ==========================================================
   12. POST MARQUEE
   ========================================================== */
.mgw-post-card {
    display: inline-flex; flex-direction: column; background: #fff;
    border-radius: 10px; overflow: hidden; flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
}
.mgw-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.mgw-post-img { position: relative; overflow: hidden; flex-shrink: 0; }
.mgw-post-img img { width: 100%; display: block; object-fit: cover; transition: transform .4s; }
.mgw-post-card:hover .mgw-post-img img { transform: scale(1.06); }
.mgw-post-no-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #003366, #1a5276); color: rgba(255,255,255,.25); font-size: 40px; }
.mgw-post-cat { position: absolute; bottom: 10px; left: 10px; background: #003366; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.mgw-post-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mgw-post-date { font-size: 12px; color: #888; display: flex; align-items: center; gap: 5px; }
.mgw-post-title { font-size: 15px; font-weight: 700; margin: 0; line-height: 1.4; }
.mgw-post-title a { color: #1a1a2e; text-decoration: none; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mgw-post-title a:hover { color: #003366; }
.mgw-post-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mgw-post-read-more { font-size: 13px; font-weight: 600; color: #CC0001; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }

/* ==========================================================
   13. PRODUCT MARQUEE
   ========================================================== */
.mgw-product-card {
    display: inline-flex; flex-direction: column; background: #fff;
    border-radius: 10px; overflow: hidden; flex-shrink: 0;
    box-shadow: 0 3px 16px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
}
.mgw-product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.mgw-prod-img { position: relative; overflow: hidden; flex-shrink: 0; }
.mgw-prod-img img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; display: block; }
.mgw-product-card:hover .mgw-prod-img img { transform: scale(1.05); }
.mgw-prod-sale { position: absolute; top: 8px; left: 8px; background: #CC0001; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 4px; }
.mgw-prod-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.mgw-prod-title { font-size: 14px; font-weight: 600; margin: 0; line-height: 1.4; }
.mgw-prod-title a { color: #1a1a2e; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mgw-prod-title a:hover { color: #003366; }
.mgw-prod-price { font-size: 15px; font-weight: 700; color: #003366; }
.mgw-prod-price del { font-weight: 400; color: #999; font-size: 12px; margin-right: 4px; }
.mgw-prod-atc { display: inline-flex; align-items: center; gap: 6px; background: #003366; color: #fff; border: none; padding: 8px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background .2s; align-self: flex-start; margin-top: auto; }
.mgw-prod-atc:hover { background: #CC0001; color: #fff; }

/* ==========================================================
   14. PRODUCT CATEGORY
   ========================================================== */
.mgw-prodcat-item { display: inline-flex; flex-direction: column; align-items: center; background: #f0f4f8; border-radius: 10px; overflow: hidden; flex-shrink: 0; text-decoration: none; transition: transform .3s, box-shadow .3s; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.mgw-prodcat-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.mgw-prodcat-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.mgw-prodcat-name { font-weight: 700; font-size: 14px; color: #003366; padding: 10px 12px 4px; text-align: center; }
.mgw-prodcat-count { font-size: 12px; color: #888; padding: 0 12px 10px; }

/* ==========================================================
   15. ADVANCED TEXT MARQUEE
   ========================================================== */
.mgw-advt-item {
    display: inline-block; font-size: 36px; font-weight: 900;
    white-space: nowrap; letter-spacing: .05em; text-transform: uppercase;
}

/* ==========================================================
   16. STACKED MARQUEE
   ========================================================== */
.mgw-stacked-wrapper { overflow: hidden; }
.mgw-stacked-row { overflow: hidden; height: 56px; line-height: 56px; }
.mgw-stacked-text { white-space: nowrap; }

/* ==========================================================
   17. ANIMATED WORD ROLLER
   ========================================================== */
.mgw-word-roller-wrap { display: block; font-size: 28px; line-height: 1.3; user-select: none; }
.mgw-wr-dynamic { display: inline-block; color: #003366; min-width: 40px; vertical-align: bottom; }
.mgw-wr-dynamic.mgw-anim-flip  { animation: mgwFlip .5s cubic-bezier(.455,.03,.515,.955); }
.mgw-wr-dynamic.mgw-anim-slide { animation: mgwSlideUp .4s ease; }
.mgw-wr-dynamic.mgw-anim-fade  { animation: mgwFadeIn .5s ease; }
.mgw-wr-dynamic.mgw-anim-bounce{ animation: mgwBounce .6s ease; }
.mgw-wr-cursor { color: #CC0001; animation: mgwBlink 1s steps(1) infinite; }
@keyframes mgwFlip   { 0%{transform:rotateX(90deg);opacity:0}100%{transform:rotateX(0);opacity:1} }
@keyframes mgwSlideUp{ 0%{transform:translateY(100%);opacity:0}100%{transform:translateY(0);opacity:1} }
@keyframes mgwFadeIn { 0%{opacity:0}100%{opacity:1} }
@keyframes mgwBounce { 0%{transform:scale(1.4);opacity:0}60%{transform:scale(.9)}100%{transform:scale(1);opacity:1} }
@keyframes mgwBlink  { 0%,100%{opacity:1}50%{opacity:0} }

/* ==========================================================
   18. ANIMATED HEADING
   ========================================================== */
.mgw-anim-heading { display: block; line-height: 1.3; }
.mgw-hl-underline { position: relative; display: inline-block; }
.mgw-hl-underline::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 3px; background: var(--c1, #003366); border-radius: 2px; animation: mgwUnderline 1.5s ease forwards; }
@keyframes mgwUnderline { to { width: 100%; } }
.mgw-hl-blur { display: inline-block; animation: mgwBlurIn .8s ease forwards; }
@keyframes mgwBlurIn { 0%{filter:blur(10px);opacity:0}100%{filter:blur(0);opacity:1} }

/* ==========================================================
   19. BLOG CAROUSEL
   ========================================================== */
.mgw-blog-carousel-wrapper { width: 100%; }
.mgw-carousel-header { margin-bottom: 32px; }
.mgw-carousel-title { font-size: 26px; font-weight: 700; color: #003366; margin: 0 0 10px; padding-left: 18px; position: relative; line-height: 1.3; }
.mgw-carousel-title::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; background: #CC0001; border-radius: 3px; }
.mgw-carousel-subtitle { color: #666; margin: 0; font-size: 15px; padding-left: 18px; }
.mgw-swiper-outer { position: relative; padding: 0 52px; }
.mgw-swiper-btn { position: absolute; top: 50%; transform: translateY(-60%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: #003366; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .25s, box-shadow .2s; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.mgw-swiper-btn:hover { background: #CC0001; box-shadow: 0 4px 16px rgba(204,0,1,.35); }
.mgw-swiper-prev { left: 0; }
.mgw-swiper-next { right: 0; }
.mgw-swiper-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }
.mgw-blog-card { background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform .3s, box-shadow .3s; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.mgw-blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
.mgw-blog-card__image-link { display: block; text-decoration: none; }
.mgw-blog-card__image { overflow: hidden; position: relative; background: #e8eef5; }
.mgw-blog-card__image img { width: 100%; display: block; object-fit: cover; transition: transform .45s; }
.mgw-blog-card:hover .mgw-blog-card__image img { transform: scale(1.06); }
.mgw-blog-card__cat { position: absolute; bottom: 12px; left: 12px; background: #003366; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; z-index: 2; }
.mgw-blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.mgw-blog-card__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mgw-blog-card__date, .mgw-blog-card__author { display: flex; align-items: center; gap: 5px; color: #888; font-size: 12px; }
.mgw-blog-card__title { font-size: 16px; font-weight: 700; line-height: 1.45; margin: 0; }
.mgw-blog-card__title a { color: #1a1a2e; text-decoration: none; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mgw-blog-card__title a:hover { color: #003366; }
.mgw-blog-card__excerpt { font-size: 14px; color: #555; line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.mgw-blog-card__btn { display: inline-flex; align-items: center; gap: 7px; background: #003366; color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 5px; transition: background .25s; align-self: flex-start; margin-top: auto; }
.mgw-blog-card__btn:hover { background: #CC0001; color: #fff; }
.mgw-blog-swiper .swiper-pagination { margin-top: 28px; position: relative; bottom: auto; }
.mgw-blog-swiper .swiper-pagination-bullet { width: 8px; height: 8px; background: #ccc; opacity: 1; transition: background .2s, width .3s; border-radius: 4px; }
.mgw-blog-swiper .swiper-pagination-bullet-active { background: #003366; width: 24px; }
.mgw-blog-swiper { overflow: visible; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .mgw-swiper-outer { padding: 0 44px; }
    .mgw-advt-item { font-size: 24px; }
    .mgw-carousel-title { font-size: 20px; }
}
@media (max-width: 480px) {
    .mgw-ticker-label { padding: 0 12px; font-size: 11px; }
    .mgw-swiper-outer { padding: 0 36px; }
}
