/* =========================================================
   THE ANCHOR BENGAL — MAIN STYLESHEET
   ========================================================= */

:root{
  --red:            #cc1f1f;
  --red-dark:       #a01616;
  --navy:           #16213e;
  --ink:            #1a1a1a;
  --text:           #2b2b2b;
  --muted:          #6b7280;
  --border:         #e7e7e7;
  --bg:             #f4f5f7;
  --card-bg:        #ffffff;
  --gold:           #c99a3e;

  --font-bn: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --font-en: 'Poppins', sans-serif;

  --container: 1380px;
  --radius: 6px;
  --shadow: 0 2px 10px rgba(0,0,0,.06);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-bn);
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input{ font-family:inherit; }
h1,h2,h3,h4{ margin:0; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 16px;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.top-bar{
  background:var(--red);
  color:#fff;
  font-size:13px;
}
.top-bar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:34px;
  gap:12px;
}
.top-bar__date{ white-space:nowrap; font-weight:500; }
.top-bar__links{ display:flex; align-items:center; gap:8px; flex:1; justify-content:center; }
.top-bar__links a{ opacity:.95; white-space:nowrap; }
.top-bar__links a:hover{ text-decoration:underline; }
.top-bar__links .dot{ opacity:.6; }
.top-bar__social{ display:flex; gap:14px; }
.top-bar__social a{ opacity:.95; font-size:13px; }
.top-bar__social a:hover{ opacity:1; transform:translateY(-1px); }

/* =========================================================
   HEADER / LOGO
   ========================================================= */
.site-header{
  background:#fff;
  padding:18px 0;
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:75px;
  flex-wrap:wrap;
}
.ad-slot{
  border:1px dashed #c9ccd3;
  color:#9aa0aa;
  font-family:var(--font-en);
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  background:#fbfbfc;
}
.ad-slot--side{ width:480px; height:100px; flex-shrink:0; }

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  font-family:var(--font-en);
  line-height:1;
  min-width:220px;
  width:220px;
}
.brand__the{
  font-size:13px;
  font-weight:700;
  letter-spacing:6px;
  color:var(--navy);
  margin-bottom:2px;
}
.brand__name{
  font-size:40px;
  font-weight:800;
  letter-spacing:2px;
  color:var(--red);
}
.brand__city{
  font-size:22px;
  font-weight:700;
  letter-spacing:10px;
  color:var(--navy);
  margin-top:-4px;
}
.brand__tag{
  margin-top:6px;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  color:#8a8f98;
  border-top:2px solid var(--red);
  padding-top:5px;
}

/* =========================================================
   MAIN NAVIGATION
   ========================================================= */
.main-nav{
  background:#FFFFFF;
  position:sticky;
  top:0;
  z-index:100;
  border-top:2px solid #EDEDED;
  border-bottom:2px solid #EDEDED;
}
.main-nav__inner{
  display:flex;
  align-items:stretch;
  gap:4px;
}
.main-nav__home{
  background:var(--red);
  color:#fff;
  width:46px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}
.main-nav__menu{
  display:flex;
  overflow-x:auto;
  scrollbar-width:none;
  flex:1;
}
.main-nav__menu::-webkit-scrollbar{ display:none; }
.main-nav__menu li{ flex-shrink:0; }
.main-nav__menu a{
  display:block;
  color:#262626;
  font-size:14.5px;
  font-weight:500;
  padding:13px 14px;
  white-space:nowrap;
  border-bottom:3px solid transparent;
  transition:.2s;
}
.main-nav__menu a:hover,
.main-nav__menu li.active a{
  background:var(--red);
  border-bottom-color:var(--red);
  color:#fff;
}
.main-nav__search,
.main-nav__toggle{
  color:#e9eaf0;
  width:46px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}
.main-nav__search:hover{ color:var(--red); }
.main-nav__toggle{ display:none; }

.nav-search-box{
  max-height:0;
  overflow:hidden;
  background:#1c2a4d;
  transition:max-height .25s ease;
}
.nav-search-box.open{ max-height:70px; }
.nav-search-box .container{
  display:flex;
  gap:8px;
  padding-top:12px;
  padding-bottom:12px;
}
.nav-search-box input{
  flex:1;
  border:none;
  border-radius:4px;
  padding:10px 14px;
  font-size:14px;
}
.nav-search-box button{
  background:var(--red);
  color:#fff;
  width:44px;
  border-radius:4px;
}

/* =========================================================
   BREAKING NEWS TICKER
   ========================================================= */
.breaking{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.breaking__inner{
  display:flex;
  align-items:center;
  height:44px;
  gap:14px;
}
.breaking__label{
  background:var(--red);
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:6px 12px;
  border-radius:4px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:6px;
}
.breaking__ticker{
  flex:1;
  overflow:hidden;
  position:relative;
  height:20px;
}
.breaking__track{
  display:flex;
  flex-direction:column;
  position:absolute;
  width:100%;
  transition:transform .5s ease;
}
.breaking__track span{
  height:20px;
  line-height:20px;
  font-size:14px;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.breaking__nav{ display:flex; gap:6px; flex-shrink:0; }
.breaking__nav button{
  width:26px; height:26px;
  border-radius:50%;
  background:var(--bg);
  color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:11px;
}
.breaking__nav button:hover{ background:var(--red); color:#fff; }

/* =========================================================
   PAGE GRID
   ========================================================= */
.page-grid{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:28px;
  padding-top:24px;
  align-items:start;
}

/* =========================================================
   HERO ROW
   ========================================================= */
.hero-row{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:20px;
  margin-bottom:34px;
}
.hero-feature{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#000;
}
.hero-feature__img-wrap{ display:block; aspect-ratio:16/10.3; overflow:hidden; }
.hero-feature__img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.hero-feature:hover .hero-feature__img-wrap img{ transform:scale(1.05); }
.hero-feature__caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px 22px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.92) 10%, rgba(0,0,0,.55) 60%, transparent 100%);
  color:#fff;
}
.hero-feature__caption h1{
  font-size:26px;
  font-weight:700;
  line-height:1.35;
  margin:10px 0 8px;
}
.hero-feature__caption h1 a:hover{ text-decoration:underline; }
.tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:3px;
}
.tag--red{ background:var(--red); color:#fff; }
.byline{ font-size:12.5px; color:#d9d9d9; margin:0; }

.hero-numbered{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.numbered-item{
  position:relative;
  display:grid;
  background:var(--card-bg);
  border-radius:var(--radius);
  padding:10px;
  align-items:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:top center;
  height:110px;
}

.numbered-item__num{
  position:absolute;
  top:8px; left:8px;
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:700;
  width:24px; height:24px;
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-en);
  z-index:2;
}
.numbered-item__img{
  display:block;
  width:110px; height:78px;
  border-radius:4px;
  overflow:hidden;
  flex-shrink:0;
}
.numbered-item__img img{ width:100%; height:100%; object-fit:cover; }
.numbered-item h3{
  font-size:14.5px;
  font-weight:600;
  line-height:1.4;
}
.numbered-item h3 a{
    color:#FFF;
}
.numbered-item h3 a:hover{ color:var(--red); }

/* =========================================================
   CATEGORY BLOCKS (3-column grid, wraps every 3 blocks)
   ========================================================= */
.main-col{
  display:grid;
  grid-template-columns:repeat(1, 1fr);
  gap:24px 20px;
}
.main-col > .hero-row{ grid-column:1 / -1; margin-bottom:10px; }

.cat-block__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:2px solid var(--navy);
  padding-bottom:8px;
  margin-bottom:14px;
}
.cat-block__head h2{
  font-size:17px;
  font-weight:700;
  color:var(--navy);
  position:relative;
  padding-left:10px;
  border-left:4px solid var(--red);
}
.cat-block__head a{
  font-size:12px;
  color:var(--red);
  font-weight:600;
  white-space:nowrap;
  display:flex; align-items:center; gap:4px;
}
.cat-block__head a:hover{ text-decoration:underline; }

.cat-block__img{
  display:block;
  aspect-ratio:16/10;
  border-radius:var(--radius);
  overflow:hidden;
  margin-bottom:12px;
  box-shadow:var(--shadow);
}
.cat-block__img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.cat-block__img:hover img{ transform:scale(1.06); }

.cat-block h3{
  font-size:16px;
  font-weight:700;
  line-height:1.45;
  margin-bottom:10px;
}
.cat-block h3 a:hover{ color:var(--red); }

.cat-block ul{ display:flex; flex-direction:column; gap:7px; }
.cat-block ul li{
  font-size:13.5px;
  color:var(--muted);
  padding-left:14px;
  position:relative;
  line-height:1.4;
}
.cat-block ul li::before{
  content:'';
  position:absolute;
  left:0; top:7px;
  width:6px; height:6px;
  background:var(--red);
  border-radius:50%;
}
.cat-block ul li a:hover{ color:var(--red); }

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.widget{
  background:var(--card-bg);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.widget__title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.widget__title-row h3{
  font-size:16px;
  font-weight:700;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:8px;
}
.widget__title-row h3 i{ color:var(--red); }
.widget__title-row a{ font-size:12px; color:var(--red); font-weight:600; }

.widget--search{ padding-bottom:16px; }
.widget__logo-search{ display:flex; align-items:center; gap:10px; }
.mini-logo{
  width:auto; height:40px;
  margin-right:15px;
  border-radius:50%;
  /*background:linear-gradient(135deg, var(--red), var(--navy));*/
  color:#fff;
  font-family:var(--font-en);
  font-weight:800;
  font-size:14px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.search-pill{
  flex:1;
  display:flex;
  background:var(--bg);
  border-radius:20px;
  overflow:hidden;
}
.search-pill input{
  flex:1;
  border:none;
  background:transparent;
  padding:10px 14px;
  font-size:13.5px;
}
.search-pill button{
  width:40px;
  color:var(--red);
}

.widget--latest{ display:flex; flex-direction:column; gap:14px; }
.latest-item{ display:grid; grid-template-columns:76px 1fr; gap:10px; }
.latest-item__img{ border-radius:4px; overflow:hidden; aspect-ratio:4/3; }
.latest-item__img img{ width:100%; height:100%; object-fit:cover; }
.latest-item h4{
  font-size:13.5px;
  font-weight:600;
  line-height:1.4;
  margin-bottom:4px;
}
.latest-item h4:hover{ color:var(--red); }
.latest-item__date{ font-size:11.5px; color:var(--muted); }

.widget--ad{ padding:0; overflow:hidden; }
.ad-promo{
  background:linear-gradient(135deg, var(--navy), #223061);
  color:#fff;
  text-align:center;
  padding:30px 20px;
  min-height:200px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.ad-promo__title{ font-size:14px; opacity:.85; margin:0; }
.ad-promo__cta{ font-size:22px; font-weight:700; color:var(--red); margin:2px 0; }
.ad-promo__size{ font-size:12px; opacity:.7; margin:0 0 10px; font-family:var(--font-en); }
.ad-promo__btn{
  background:var(--red);
  color:#fff;
  padding:8px 20px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}
.ad-promo__btn:hover{ background:var(--red-dark); }

.rashifal-list{ display:flex; flex-direction:column; gap:12px; max-height:400px; overflow:hidden; }
.rashifal-list li{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:10px;
  align-items:flex-start;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.rashifal-list li:last-child{ border-bottom:none; padding-bottom:0; }
.rashifal-icon{
  width:34px; height:34px;
  border-radius:50%;
  background:var(--bg);
  color:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  flex-shrink:0;
}
.rashifal-list strong{ font-size:14px; color:var(--navy); display:block; margin-bottom:2px; }
.rashifal-list p{ font-size:12.5px; color:var(--muted); margin:0; line-height:1.4; }
.rashifal-more{
  display:flex; align-items:center; justify-content:center; gap:6px;
  margin-top:14px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:var(--red);
  padding:9px;
  border-radius:4px;
}
.rashifal-more:hover{ background:var(--red-dark); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter{
  background:var(--navy);
  color:#fff;
  margin-top:40px;
  padding:26px 0;
}
.newsletter__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.newsletter__text{ display:flex; align-items:center; gap:14px; }
.newsletter__text i{ font-size:30px; color:var(--red); }
.newsletter__text h3{ font-size:17px; margin-bottom:3px; }
.newsletter__text p{ margin:0; font-size:13px; opacity:.75; }
.newsletter__form{ display:flex; gap:10px; flex:1; max-width:480px; min-width:280px; }
.newsletter__form input{
  flex:1;
  padding:12px 16px;
  border:none;
  border-radius:4px;
  font-size:14px;
}
.newsletter__form button{
  background:var(--red);
  color:#fff;
  font-weight:600;
  font-size:14px;
  padding:12px 22px;
  border-radius:4px;
  white-space:nowrap;
}
.newsletter__form button:hover{ background:var(--red-dark); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:#FFF;
  color:#c9cdd8;
  padding-top:40px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.6fr 1.2fr;
  gap:30px;
  padding-bottom:30px;
}
.footer-col h4{
  color:#000e3f;
  font-size:15px;
  margin-bottom:16px;
  position:relative;
  padding-bottom:8px;
}
.footer-col h4::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:34px; height:2px;
  background:var(--red);
}
.footer-col ul{ display:flex; flex-direction:column; gap:9px; }
.footer-col a{ font-size:13.5px; color:#000e3f; }
.footer-col a:hover{ color:#af0100; }
.footer-col__cats{ display:grid !important; grid-template-columns:1fr 1fr 1fr; gap:9px 14px; }

.footer-col--brand p{ font-size:13px; line-height:1.6; margin:14px 0 16px; color:#9ba0ac; }
.brand--footer{ align-items:flex-start; text-align:left; }
.brand--footer .brand__the{ letter-spacing:5px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:34px; height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
}
.footer-social a:hover{ background:var(--red); color:#fff; }

.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13.5px;
  color:#000e3f;
  line-height:1.5;
}
.footer-contact i{ color:var(--red); margin-top:3px; flex-shrink:0; width:14px; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
  text-align:center;
  font-size:13px;
  color:#FFF;
  background-color:#000e3f;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top{
  position:fixed;
  right:20px; bottom:20px;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s;
  z-index:200;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--red-dark); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .page-grid{ grid-template-columns:1fr; }
  .main-col{ grid-template-columns:repeat(2, 1fr); }
  .sidebar{ grid-template-columns:1fr 1fr; display:grid; }
}

@media (max-width: 860px){
  .ad-slot--side{ display:none; }
  .hero-row{ grid-template-columns:1fr; }
  .main-nav__toggle{ display:flex; }
  .main-nav__menu{
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    background:var(--navy);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .main-nav__menu.open{ max-height:640px; overflow-y:auto; }
  .main-nav__menu a{ padding:13px 20px; border-bottom:1px solid rgba(255,255,255,.06); }
  .brand__name{ font-size:32px; }
  .brand__city{ font-size:18px; letter-spacing:7px; }
}

@media (max-width: 680px){
  .main-col{ grid-template-columns:1fr; }
  .sidebar{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-col--brand{ grid-column:1 / -1; }
  .top-bar__links{ display:none; }
  .newsletter__inner{ flex-direction:column; align-items:flex-start; }
  .numbered-item{ grid-template-columns:90px 1fr; }
  .numbered-item__img{ width:90px; height:64px; }
}

@media (max-width: 480px){
  .footer-grid{ grid-template-columns:1fr; }
  .footer-col__cats{ grid-template-columns:1fr 1fr; }
  .brand__name{ font-size:26px; }
  .brand__city{ font-size:15px; letter-spacing:5px; }
  .hero-feature__caption h1{ font-size:20px; }
}


/*====================================
        YOUTUBE WIDGET
=====================================*/

.widget--youtube{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    margin-top:20px;

    border:1px solid #ececec;

}

.widget--youtube .widget__title-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 18px;

    border-bottom:1px solid #eee;

}

.widget--youtube h3{

    margin:0;

    font-size:20px;

    font-weight:700;

    color:#c41217;

    display:flex;

    align-items:center;

    gap:10px;

}

.widget--youtube h3 i{

    color:#ff0000;

    font-size:22px;

}

.youtube-box{

    position:relative;

    width:100%;

    /* padding-bottom:56.25%; */

    overflow:hidden;

}

.youtube-box iframe{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    border:0;

}

.widget--youtube:hover{

    transform:translateY(-3px);

    transition:.3s;

}

/* Archive Page */

/*==================================================
        NEWS ARCHIVE PAGE
==================================================*/

.news-archive {
    padding: 55px 0 80px;
    background: #f7f7f7;
}


/*==================================================
        ARCHIVE HEADER
==================================================*/

.archive-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.archive-header__label {
    display: block;
    margin-bottom: 8px;
    color: #c41217;
    font-size: 14px;
    font-weight: 600;
}

.archive-header h1 {
    margin: 0;
    color: #171717;
    font-size: 38px;
    font-weight: 700;
}

.archive-header__right {
    color: #777;
    font-size: 14px;
    padding-bottom: 5px;
}

.archive-divider {
    height: 3px;
    width: 100%;
    margin: 20px 0 30px;
    background: #c41217;
    position: relative;
}

.archive-divider::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 3px;
    background: #171717;
}


/*==================================================
        FEATURED NEWS
==================================================*/

.archive-featured {
    display: grid;
    grid-template-columns: 52% 48%;
    background: #fff;
    border: 1px solid #e9e9e9;
    margin-bottom: 35px;
}

.archive-featured__image {
    height: 380px;
    overflow: hidden;
}

.archive-featured__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.archive-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.archive-featured:hover .archive-featured__image img {
    transform: scale(1.04);
}

.archive-featured__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #888;
    font-size: 13px;
    margin-bottom: 13px;
}

.news-date i {
    color: #c41217;
}

.archive-featured__content h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}

.archive-featured__content h2 a {
    color: #171717;
    text-decoration: none;
    transition: color .25s ease;
}

.archive-featured__content h2 a:hover {
    color: #c41217;
}

.archive-featured__content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.archive-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #c41217;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.archive-read-more i {
    transition: transform .25s ease;
}

.archive-read-more:hover {
    color: #9d0d11;
}

.archive-read-more:hover i {
    transform: translateX(5px);
}


/*==================================================
        ARCHIVE CONTENT
==================================================*/

.archive-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 35px;
    align-items: start;
}


/*==================================================
        NEWS LIST
==================================================*/

.archive-list {
    background: transparent;
}

.archive-news-item {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 25px;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    margin-bottom: 20px;
    transition: .3s ease;
}

.archive-news-item:hover {
    border-color: #ddd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transform: translateY(-2px);
}

.archive-news-item__image {
    width: 245px;
    height: 155px;
    overflow: hidden;
}

.archive-news-item__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.archive-news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.archive-news-item:hover .archive-news-item__image img {
    transform: scale(1.05);
}

.archive-news-item__content h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 700;
}

.archive-news-item__content h2 a {
    color: #222;
    text-decoration: none;
    transition: color .25s ease;
}

.archive-news-item__content h2 a:hover {
    color: #c41217;
}

.archive-news-item__content p {
    margin: 0 0 15px;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/*==================================================
        NO IMAGE
==================================================*/

.archive-no-image {
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
    color: #aaa;
    font-size: 35px;
}


/*==================================================
        SIDEBAR
==================================================*/

.archive-sidebar {
    position: sticky;
    top: 100px;
}

.archive-widget {
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    margin-bottom: 25px;
}

.archive-widget__title {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #c41217;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.archive-widget__title i {
    color: #c41217;
    font-size: 17px;
}

.archive-widget__title h3 {
    margin: 0;
    color: #222;
    font-size: 19px;
    font-weight: 700;
}


/*==================================================
        SEARCH
==================================================*/

.archive-search {
    display: flex;
    width: 100%;
}

.archive-search input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-right: 0;
    outline: none;
    font-size: 14px;
}

.archive-search input:focus {
    border-color: #c41217;
}

.archive-search button {
    width: 50px;
    border: 0;
    background: #c41217;
    color: #fff;
    cursor: pointer;
    transition: background .25s ease;
}

.archive-search button:hover {
    background: #9d0d11;
}


/*==================================================
        LATEST NEWS
==================================================*/

.archive-latest__item {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #eeeeee;
}

.archive-latest__item:first-child {
    padding-top: 0;
}

.archive-latest__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.archive-latest__image {
    width: 85px;
    height: 65px;
    overflow: hidden;
}

.archive-latest__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-latest__content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.archive-latest__content h4 a {
    color: #333;
    text-decoration: none;
    transition: color .25s ease;
}

.archive-latest__content h4 a:hover {
    color: #c41217;
}

.archive-latest__content span {
    color: #999;
    font-size: 11px;
}


/*==================================================
        CATEGORY LIST
==================================================*/

.archive-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-categories li {
    border-bottom: 1px solid #eeeeee;
}

.archive-categories li:last-child {
    border-bottom: 0;
}

.archive-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.archive-categories li a:hover {
    color: #c41217;
    padding-left: 5px;
}

.category-count {
    min-width: 25px;
    height: 22px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #777;
    border-radius: 3px;
    font-size: 11px;
}


/*==================================================
        PAGINATION
==================================================*/

.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 45px;
}

.archive-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    border-color: #c41217;
    background: #c41217;
    color: #fff;
}

.archive-pagination .page-numbers.dots {
    border: 0;
    background: transparent;
}


/*==================================================
        EMPTY STATE
==================================================*/

.archive-empty {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    border: 1px solid #eee;
}

.archive-empty > i {
    color: #c41217;
    font-size: 55px;
    margin-bottom: 20px;
}

.archive-empty h2 {
    margin-bottom: 10px;
    font-size: 25px;
}

.archive-empty p {
    color: #777;
}

.archive-empty a {
    display: inline-block;
    margin-top: 15px;
    padding: 11px 22px;
    background: #c41217;
    color: #fff;
    text-decoration: none;
}


/*==================================================
        RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .news-archive {
        padding: 45px 0 60px;
    }

    .archive-content {
        grid-template-columns: 1fr;
    }

    .archive-sidebar {
        position: static;
    }

    .archive-featured {
        grid-template-columns: 1fr;
    }

    .archive-featured__image {
        height: 330px;
    }

}


@media (max-width: 767px) {

    .archive-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .archive-header h1 {
        font-size: 30px;
    }

    .archive-featured__image {
        height: 250px;
    }

    .archive-featured__content {
        padding: 25px;
    }

    .archive-featured__content h2 {
        font-size: 23px;
    }

    .archive-news-item {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .archive-news-item__image {
        width: 120px;
        height: 95px;
    }

    .archive-news-item__content h2 {
        font-size: 16px;
        line-height: 1.45;
    }

    .archive-news-item__content p {
        display: none;
    }

    .archive-news-item__content .archive-read-more {
        font-size: 12px;
    }

}


@media (max-width: 480px) {

    .archive-featured__image {
        height: 210px;
    }

    .archive-news-item {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .archive-news-item__image {
        width: 100px;
        height: 80px;
    }

    .archive-news-item__content h2 {
        font-size: 15px;
    }

    .archive-news-item__content .news-date {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .archive-sidebar {
        margin-top: 10px;
    }

}

/*==================================================
        SINGLE NEWS PAGE
==================================================*/

.single-news-page {
    padding: 35px 0 80px;
    background: #f7f7f7;
}


/*==================================================
        BREADCRUMB
==================================================*/

.single-news-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #888;
}

.single-news-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.single-news-breadcrumb a:hover {
    color: #c41217;
}

.single-news-breadcrumb i {
    font-size: 9px;
    color: #aaa;
}


/*==================================================
        MAIN LAYOUT
==================================================*/

.single-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 35px;
    align-items: start;
}


/*==================================================
        ARTICLE
==================================================*/

.single-news-article {
    background: #fff;
    padding: 35px 40px 45px;
    border: 1px solid #e8e8e8;
}


/*==================================================
        CATEGORY
==================================================*/

.single-news-category {
    margin-bottom: 15px;
}

.single-news-category a {
    display: inline-block;
    padding: 6px 13px;
    background: #c41217;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
}


/*==================================================
        TITLE
==================================================*/

.single-news-title {
    margin: 0;
    color: #161616;
    font-size: 38px;
    line-height: 1.45;
    font-weight: 700;
}


/*==================================================
        META
==================================================*/

.single-news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #888;
    font-size: 13px;
}

.single-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.single-news-meta i {
    color: #c41217;
}


/*==================================================
        SHARE
==================================================*/

.single-news-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 25px;
}

.single-news-share > span {
    margin-right: 5px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.single-news-share a,
.single-news-share button {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;
}

.single-news-share a:hover,
.single-news-share button:hover {
    transform: translateY(-2px);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #111;
}

.share-whatsapp {
    background: #25d366;
}

.share-copy {
    background: #777;
}


/*==================================================
        FEATURED IMAGE
==================================================*/

.single-news-featured-image {
    margin: 0 0 30px;
}

.single-news-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.single-news-featured-image figcaption {
    padding-top: 8px;
    color: #000;
    font-size: 16px;
    text-align: left;
	font-weight:700;
}


/*==================================================
        ARTICLE CONTENT
==================================================*/

.single-news-content {
    color: #333;
    font-size: 17px;
    line-height: 2;
}

.single-news-content p {
    margin: 0 0 22px;
}

.single-news-content h2 {
    margin: 35px 0 15px;
    color: #222;
    font-size: 27px;
    line-height: 1.5;
}

.single-news-content h3 {
    margin: 30px 0 15px;
    color: #222;
    font-size: 23px;
    line-height: 1.5;
}

.single-news-content h4 {
    margin: 25px 0 12px;
    font-size: 20px;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}

.single-news-content a {
    color: #c41217;
    text-decoration: underline;
}

.single-news-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 4px solid #c41217;
    background: #f7f7f7;
    color: #555;
    font-size: 18px;
    font-style: italic;
}

.single-news-content ul,
.single-news-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.single-news-content li {
    margin-bottom: 8px;
}


/*==================================================
        TAGS
==================================================*/

.single-news-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.single-news-tags > span {
    margin-right: 5px;
    font-weight: 600;
    color: #444;
}

.single-news-tags a {
    padding: 5px 10px;
    background: #f1f1f1;
    color: #666;
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px;
    transition: .25s ease;
}

.single-news-tags a:hover {
    background: #c41217;
    color: #fff;
}


/*==================================================
        AUTHOR
==================================================*/

.single-news-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 18px;
    background: #fafafa;
    border: 1px solid #eee;
}

.single-news-author__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c41217;
    color: #fff;
    border-radius: 50%;
}

.single-news-author span {
    display: block;
    margin-bottom: 3px;
    color: #999;
    font-size: 12px;
}

.single-news-author h4 {
    margin: 0;
    color: #333;
    font-size: 15px;
}


/*==================================================
        PREVIOUS / NEXT
==================================================*/

.single-news-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.single-news-nav {
    min-width: 0;
}

.single-news-nav.next {
    text-align: right;
}

.single-news-nav span {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 12px;
    font-weight: 600;
}

.single-news-nav span i {
    color: #c41217;
}

.single-news-nav a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    text-decoration: none;
}

.single-news-nav a:hover {
    color: #c41217;
}


/*==================================================
        RELATED NEWS
==================================================*/

.related-news {
    margin-top: 35px;
}

.related-news__heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.related-news__heading h2 {
    margin: 0;
    white-space: nowrap;
    color: #222;
    font-size: 23px;
}

.related-news__heading span {
    height: 2px;
    width: 100%;
    background: #c41217;
}

.related-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-news-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7e7e7;
}

.related-news-card__image {
    display: block;
    height: 190px;
    overflow: hidden;
}

.related-news-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.related-news-card:hover .related-news-card__image img {
    transform: scale(1.05);
}

.related-news-card__content {
    padding: 15px;
}

.related-news-card__content span {
    color: #999;
    font-size: 11px;
}

.related-news-card__content h3 {
    margin: 7px 0 0;
    font-size: 17px;
    line-height: 1.5;
}

.related-news-card__content h3 a {
    color: #333;
    text-decoration: none;
}

.related-news-card__content h3 a:hover {
    color: #c41217;
}


/*==================================================
        SIDEBAR
==================================================*/

.single-news-sidebar {
    position: sticky;
    top: 100px;
}

.single-news-widget {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.single-news-widget__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid #c41217;
}

.single-news-widget__title i {
    color: #c41217;
}

.single-news-widget__title h3 {
    margin: 0;
    color: #222;
    font-size: 19px;
}


/*==================================================
        SIDEBAR SEARCH
==================================================*/

.single-news-search {
    display: flex;
}

.single-news-search input {
    width: 100%;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #ddd;
    border-right: 0;
    outline: none;
    font-size: 13px;
}

.single-news-search input:focus {
    border-color: #c41217;
}

.single-news-search button {
    width: 48px;
    border: 0;
    background: #c41217;
    color: #fff;
    cursor: pointer;
}


/*==================================================
        SIDEBAR LATEST
==================================================*/

.single-latest-news__item {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.single-latest-news__item:first-child {
    padding-top: 0;
}

.single-latest-news__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.single-latest-news__image {
    width: 85px;
    height: 65px;
    overflow: hidden;
}

.single-latest-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-latest-news__content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.5;
}

.single-latest-news__content h4 a {
    color: #333;
    text-decoration: none;
}

.single-latest-news__content h4 a:hover {
    color: #c41217;
}

.single-latest-news__content span {
    color: #999;
    font-size: 11px;
}


/*==================================================
        SIDEBAR CATEGORIES
==================================================*/

.single-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-category-list li {
    border-bottom: 1px solid #eee;
}

.single-category-list li:last-child {
    border-bottom: 0;
}

.single-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.single-category-list a:hover {
    padding-left: 5px;
    color: #c41217;
}

.single-category-list b {
    min-width: 24px;
    height: 21px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    color: #777;
    border-radius: 3px;
    font-size: 10px;
}


/*==================================================
        RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .single-news-layout {
        grid-template-columns: 1fr;
    }

    .single-news-sidebar {
        position: static;
    }

    .single-news-title {
        font-size: 32px;
    }

}


@media (max-width: 767px) {

    .single-news-page {
        padding: 25px 0 60px;
    }

    .single-news-article {
        padding: 25px 20px 30px;
    }

    .single-news-title {
        font-size: 27px;
        line-height: 1.5;
    }

    .single-news-meta {
        gap: 10px 15px;
    }

    .single-news-content {
        font-size: 16px;
        line-height: 1.9;
    }

    .single-news-navigation {
        grid-template-columns: 1fr;
    }

    .single-news-nav.next {
        text-align: left;
    }

    .related-news__grid {
        grid-template-columns: 1fr;
    }

    .related-news-card__image {
        height: 210px;
    }

}


@media (max-width: 480px) {

    .single-news-title {
        font-size: 23px;
    }

    .single-news-share {
        flex-wrap: wrap;
    }

    .single-news-featured-image img {
        max-height: 400px;
    }

}

/* ==================================================
   YOUTUBE VIDEO WIDGET
================================================== */

.youtube-widget {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}


/* ==================================================
   HEADER
================================================== */

.youtube-widget__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 2px solid #c41217;
}

.youtube-widget__header h3 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c41217;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.youtube-widget__header h3 i {
    font-size: 20px;
    color: #ff0000;
}

.youtube-widget__header > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c41217;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.youtube-widget__header > a:hover {
    color: #8e0c10;
}

.youtube-widget__header > a i {
    font-size: 9px;
}


/* ==================================================
   MAIN VIDEO
================================================== */

.youtube-widget__main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/* ==================================================
   VIDEO CONTAINER
================================================== */

.youtube-widget__video {
    position: relative;
    display: block;
    width: 100% !important;
    max-width: 100% !important;

    /*
     * 16:9 aspect ratio
     */
    aspect-ratio: 16 / 9;

    margin: 0;
    padding: 0;

    background: #111111;
    overflow: hidden;
}


/*
 * THE IMPORTANT PART
 *
 * We explicitly force the iframe to
 * use the complete widget width.
 */

.youtube-widget__video iframe {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/* ==================================================
   MAIN VIDEO TITLE
================================================== */

.youtube-widget__main-title {
    margin: 12px 0 0;
    padding: 0;
    color: #222222;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.youtube-widget__main-title a {
    color: #222222;
    text-decoration: none;
}

.youtube-widget__main-title a:hover {
    color: #c41217;
}


/* ==================================================
   OTHER VIDEO LIST
================================================== */

.youtube-widget__list {
    width: 100%;
    margin-top: 15px;
    padding: 0;
    border-top: 1px solid #eeeeee;
}


/* ==================================================
   VIDEO ITEM
================================================== */

.youtube-widget__item {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.youtube-widget__item:last-child {
    border-bottom: 0;
}

.youtube-widget__item > a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;

    padding: 12px 0;

    color: #333333;
    text-decoration: none;

    transition: all .2s ease;
}

.youtube-widget__item > a:hover {
    color: #c41217;
}


/* ==================================================
   PLAY ICON
================================================== */

.youtube-widget__play {
    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c41217;
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;
}


/* ==================================================
   VIDEO TITLE
================================================== */

.youtube-widget__item-title {
    display: block;
    flex: 1;

    color: inherit;

    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .youtube-widget {
        padding: 15px;
    }

    .youtube-widget__header h3 {
        font-size: 18px;
    }

    .youtube-widget__header > a {
        font-size: 11px;
    }

    .youtube-widget__main-title {
        font-size: 15px;
    }

}

/* ==================================================
   HOROSCOPE PAGE
================================================== */

.horoscope-page {
    padding: 45px 0 70px;
    background: #f5f5f5;
}


/* ==================================================
   PAGE HEADER
================================================== */

.horoscope-page__header {
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 2px solid #c41217;
}

.horoscope-page__header span {
    display: block;
    margin-bottom: 5px;
    color: #c41217;
    font-size: 14px;
    font-weight: 600;
}

.horoscope-page__header h1 {
    margin: 0 0 8px;
    color: #222;
    font-size: 34px;
    font-weight: 700;
}

.horoscope-page__header p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* ==================================================
   HOROSCOPE GRID
================================================== */

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* ==================================================
   HOROSCOPE CARD
================================================== */

.horoscope-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all .25s ease;
}

.horoscope-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
}


/* ICON */

.horoscope-card__icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c41217;
    color: #fff;

    border-radius: 50%;

    font-size: 20px;
}


/* CONTENT */

.horoscope-card__content {
    flex: 1;
}

.horoscope-card__content h2 {
    margin: 0 0 6px;
    color: #222;
    font-size: 21px;
}

.horoscope-card__short {
    margin: 0 0 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}

.horoscope-card__full {
    padding-top: 12px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
}

.horoscope-card__full p {
    margin: 0 0 12px;
}

.horoscope-card__full p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   AD POPUP OVERLAY
================================================== */

.horoscope-ad-overlay {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, .62);

    /*
     * Blur the page behind the popup
     */
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    opacity: 1;
    visibility: visible;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


/* HIDDEN */

.horoscope-ad-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* ==================================================
   POPUP
================================================== */

.horoscope-ad-popup {
    position: relative;

    width: auto;
    max-width: min(90vw, 600px);
    max-height: 90vh;

    padding: 0;

    background: #fff;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35);

    overflow: visible;

    transform: scale(1);
    transition: transform .25s ease;
}


.horoscope-ad-overlay.is-hidden
.horoscope-ad-popup {
    transform: scale(.95);
}


/* ==================================================
   AD IMAGE
================================================== */

.horoscope-ad-popup img {
    display: block;

    width: auto;
    max-width: 90vw;

    height: auto;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;
}


/* ==================================================
   CLOSE BUTTON
================================================== */

.horoscope-ad-close {
    position: absolute;

    top: -14px;
    right: -14px;

    z-index: 5;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 2px solid #fff;

    border-radius: 50%;

    background: #c41217;
    color: #fff;

    font-size: 14px;

    cursor: pointer;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, .25);
}

.horoscope-ad-close:hover {
    background: #990e12;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .horoscope-page {
        padding: 30px 0 50px;
    }

    .horoscope-page__header h1 {
        font-size: 28px;
    }

    .horoscope-grid {
        grid-template-columns: 1fr;
    }

    .horoscope-card {
        padding: 18px;
    }

    .horoscope-ad-popup {
        max-width: 85vw;
    }

    .horoscope-ad-popup img {
        max-width: 85vw;
        max-height: 75vh;
    }

}

/* ==================================================
   VIDEO ARCHIVE PAGE
================================================== */

.video-archive {
    padding: 45px 0 70px;
    background: #f7f7f7;
}


/* ==================================================
   PAGE HEADER
================================================== */

.video-archive__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
    padding-bottom: 16px;

    border-bottom: 2px solid #c41217;
}

.video-archive__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 6px;

    color: #c41217;

    font-size: 14px;
    font-weight: 700;
}

.video-archive__label i {
    color: #ff0000;
    font-size: 18px;
}

.video-archive__header h1 {
    margin: 0 0 7px;

    color: #222;

    font-size: 32px;
    line-height: 1.3;

    font-weight: 700;
}

.video-archive__header p {
    margin: 0;

    color: #777;

    font-size: 14px;
}


/* ==================================================
   VIDEO GRID
================================================== */

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* ==================================================
   VIDEO CARD
================================================== */

.video-card {
    position: relative;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.video-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .10);
}


/* ==================================================
   VIDEO IMAGE
================================================== */

.video-card__image {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;
}

.video-card__image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.video-card:hover
.video-card__image img {

    transform: scale(1.04);
}


/* ==================================================
   IMAGE OVERLAY
================================================== */

.video-card__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0),
            rgba(0,0,0,.20)
        );

    pointer-events: none;
}


/* ==================================================
   PLAY BUTTON
================================================== */

.video-card__play {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c41217;

    color: #fff;

    font-size: 18px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.35);

    transition:
        transform .25s ease,
        background .25s ease;
}

.video-card:hover
.video-card__play {

    transform:
        translate(-50%, -50%)
        scale(1.1);

    background: #e00000;
}

.video-card__play i {

    margin-left: 3px;
}


/* ==================================================
   CARD CONTENT
================================================== */

.video-card__content {

    padding: 15px 16px 17px;
}

.video-card__content h2 {

    margin: 0 0 8px;

    color: #222;

    font-size: 17px;

    line-height: 1.55;

    font-weight: 700;
}

.video-card:hover
.video-card__content h2 {

    color: #c41217;
}

.video-card__date {

    color: #888;

    font-size: 12px;
}


/* ==================================================
   VIDEO MODAL
================================================== */

.video-modal {

    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.video-modal.is-active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* ==================================================
   MODAL BACKDROP
================================================== */

.video-modal__backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:
        blur(5px);

    -webkit-backdrop-filter:
        blur(5px);
}


/* ==================================================
   MODAL CONTENT
================================================== */

.video-modal__content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 950px;

    background: #000;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);
}


/* ==================================================
   MODAL PLAYER
================================================== */

.video-modal__player {

    position: relative;

    width: 100%;

    height: 0;

    padding-bottom: 56.25%;

    background: #000;
}

.video-modal__player iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==================================================
   CLOSE BUTTON
================================================== */

.video-modal__close {

    position: absolute;

    top: -45px;
    right: 0;

    z-index: 5;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c41217;

    color: #fff;

    font-size: 16px;

    cursor: pointer;

    transition:
        background .2s ease;
}

.video-modal__close:hover {

    background: #e00000;
}


/* ==================================================
   BODY WHEN MODAL IS OPEN
================================================== */

body.video-modal-open {

    overflow: hidden;
}


/* ==================================================
   PAGINATION
================================================== */

.video-pagination {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 40px;
}

.video-pagination .page-numbers {

    min-width: 36px;
    height: 36px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 10px;

    border: 1px solid #ddd;

    background: #fff;

    color: #333;

    text-decoration: none;

    font-size: 13px;

    border-radius: 4px;
}

.video-pagination .page-numbers:hover,
.video-pagination .page-numbers.current {

    border-color: #c41217;

    background: #c41217;

    color: #fff;
}


/* ==================================================
   NO RESULTS
================================================== */

.video-no-results {

    padding: 70px 20px;

    text-align: center;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 8px;
}

.video-no-results > i {

    color: #ff0000;

    font-size: 45px;

    margin-bottom: 15px;
}

.video-no-results h2 {

    margin: 0 0 8px;

    color: #222;

    font-size: 22px;
}

.video-no-results p {

    margin: 0;

    color: #777;

    font-size: 14px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .video-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .video-archive {

        padding: 30px 0 50px;
    }

    .video-archive__header h1 {

        font-size: 27px;
    }

    .video-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .video-card__content h2 {

        font-size: 16px;
    }

    .video-card__play {

        width: 52px;
        height: 52px;

        font-size: 16px;
    }

    .video-modal {

        padding: 15px;
    }

    .video-modal__close {

        top: -45px;
    }

}

/* =========================================================
   VIDEO SIDEBAR ADVERTISEMENT
========================================================= */

.widget--video-sidebar-ad {
    width: 100%;
    margin-top: 25px;
    padding: 0;
    background: transparent;
    border: 0;
}


/* =========================================================
   SLIDER CONTAINER
========================================================= */

.video-sidebar-ad-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f5f5f5;

    border-radius: 8px;

    line-height: 0;
}


/* =========================================================
   SLIDE
========================================================= */

.video-sidebar-ad-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateX(20px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s ease;
}


/* =========================================================
   ACTIVE SLIDE
========================================================= */

.video-sidebar-ad-slide.is-active {
    position: relative;

    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   AD LINK
========================================================= */

.video-sidebar-ad-slide a {
    display: block;

    width: 100%;
}


/* =========================================================
   AD IMAGE
========================================================= */

.video-sidebar-ad-slide img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: cover;

    border-radius: 8px;
}


/* =========================================================
   HOVER
========================================================= */

.video-sidebar-ad-slide a {
    transition: opacity 0.2s ease;
}

.video-sidebar-ad-slide a:hover {
    opacity: 0.92;
}


/* =========================================================
   HOMEPAGE NEWS CATEGORY SECTIONS
========================================================= */

.home_newscat{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}

.home-news-category {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    clear: both;
    padding: 10px 0;
    position: relative;
}


/*
 * Make sure the Bootstrap/container layout
 * doesn't squeeze the section.
 */

.home-news-category > .container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.home-news-category__header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-bottom: 22px;

    padding-bottom: 12px;

    border-bottom: 1px solid #dcdcdc;
}


.home-news-category__title {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.home-news-category__line {

    display: block;

    width: 5px;

    height: 30px;

    flex-shrink: 0;

    background: #d71920;

    border-radius: 2px;
}


.home-news-category__title h2 {

    margin: 0;

    padding: 0;

    color: #202020;

    font-size: 26px;

    font-weight: 700;

    line-height: 1.3;
}


.home-news-category__view-all {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    color: #d71920;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}


.home-news-category__view-all:hover {

    color: #111;

}


/* =========================================================
   NEWS GRID
========================================================= */

.home-news-grid {

    display: grid !important;

    width: 100% !important;

    max-width: 100% !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 24px !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* =========================================================
   NEWS CARD
========================================================= */

.home-news-card {

    display: flex !important;

    flex-direction: column !important;

    width: 100% !important;

    min-width: 0 !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    background: #fff;

    border: 1px solid #e3e3e3;

    border-radius: 7px;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.home-news-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.home-news-card__image {

    display: block;

    width: 100% !important;

    height: 220px;

    overflow: hidden;

    background: #eeeeee;

    flex-shrink: 0;
}


.home-news-card__image img {

    display: block;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    object-fit: cover;

    transition: transform .4s ease;
}


.home-news-card:hover
.home-news-card__image img {

    transform: scale(1.05);
}


/* =========================================================
   NO IMAGE
========================================================= */

.home-news-card__no-image {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    background: #f2f2f2;

    color: #aaa;

    font-size: 40px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.home-news-card__content {

    display: flex;

    flex-direction: column;

    flex: 1;

    width: 100%;

    min-width: 0;

    padding: 17px 18px 20px;

    box-sizing: border-box;
}


/* =========================================================
   DATE
========================================================= */

.home-news-card__date {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: #888;

    font-size: 12px;

    line-height: 1.4;
}


.home-news-card__date i {

    color: #d71920;

}


/* =========================================================
   TITLE
========================================================= */

.home-news-card__title {

    margin: 0 0 10px;

    padding: 0;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.45;
}


.home-news-card__title a {

    color: #222;

    text-decoration: none;

    transition: color .2s ease;
}


.home-news-card__title a:hover {

    color: #d71920;

}


/* =========================================================
   EXCERPT
========================================================= */

.home-news-card__excerpt {

    margin: 0 0 16px;

    color: #666;

    font-size: 14px;

    line-height: 1.7;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;
}


/* =========================================================
   READ MORE
========================================================= */

.home-news-card__read-more {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #d71920;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        gap .2s ease,
        color .2s ease;
}


.home-news-card__read-more:hover {

    gap: 10px;

    color: #222;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .home-news-category {

        padding: 38px 0;

    }


    .home-news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 20px !important;

    }


    .home-news-card__image {

        height: 210px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .home-news-category {

        padding: 30px 0;

    }


    .home-news-category__header {

        margin-bottom: 18px;

    }


    .home-news-category__title h2 {

        font-size: 22px;

    }


    .home-news-category__line {

        width: 4px;

        height: 25px;

    }


    .home-news-category__view-all {

        font-size: 13px;

    }


    .home-news-grid {

        grid-template-columns: 1fr !important;

        gap: 18px !important;

    }


    .home-news-card__image {

        height: 210px;

    }


    .home-news-card__title {

        font-size: 18px;

    }

}

/* =========================================================
   HOMEPAGE VIDEO SECTION
========================================================= */

.homepage-videos {

    width: 100%;

    margin: 10px 0 40px;

    padding: 0;

    box-sizing: border-box;

}


.homepage-videos__inner {

    width: 100%;

    box-sizing: border-box;

}


/* =========================================================
   VIDEO HEADER
========================================================= */

.homepage-videos__header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-bottom: 22px;

    padding-bottom: 12px;

    border-bottom: 2px solid #dedede;

}


.homepage-videos__heading {

    display: flex;

    align-items: center;

    gap: 10px;

}


.homepage-videos__accent {

    display: block;

    width: 5px;

    height: 38px;

    background: #d71920;

    border-radius: 2px;

    flex-shrink: 0;

}


.homepage-videos__eyebrow {

    display: block;

    margin-bottom: 2px;

    color: #d71920;

    font-size: 13px;

    font-weight: 600;

}


.homepage-videos__heading h2 {

    margin: 0;

    padding: 0;

    color: #222;

    font-size: 26px;

    font-weight: 700;

    line-height: 1.2;

}


.homepage-videos__view-all {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #d71920;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

}


.homepage-videos__view-all:hover {

    color: #111;

}


/* =========================================================
   VIDEO GRID
========================================================= */

.homepage-videos__grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    width: 100%;

}


/* =========================================================
   VIDEO CARD
========================================================= */

.homepage-video-card {

    display: flex;

    flex-direction: column;

    width: 100%;

    min-width: 0;

    margin: 0;

    padding: 0;

    background: #fff;

    border: 1px solid #e3e3e3;

    border-radius: 7px;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.homepage-video-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .10);

}


/* =========================================================
   VIDEO IMAGE
========================================================= */

.homepage-video-card__image {

    position: relative;

    display: block;

    width: 100%;

    height: 210px;

    overflow: hidden;

    background: #111;

}


.homepage-video-card__image img {

    display: block;

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    transition:
        transform .4s ease;

}


.homepage-video-card:hover
.homepage-video-card__image img {

    transform: scale(1.05);

}


/* =========================================================
   PLAY BUTTON
========================================================= */

.homepage-video-card__play {

    position: absolute;

    top: 50%;

    left: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;

    height: 54px;

    color: #fff;

    background: #d71920;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .25);

    transition:
        transform .25s ease,
        background .25s ease;

}


.homepage-video-card:hover
.homepage-video-card__play {

    transform:
        translate(-50%, -50%)
        scale(1.08);

    background: #b9141a;

}


.homepage-video-card__play i {

    margin-left: 3px;

    font-size: 18px;

}


/* =========================================================
   VIDEO CONTENT
========================================================= */

.homepage-video-card__content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 17px 18px 18px;

    box-sizing: border-box;

}


.homepage-video-card__content h3 {

    margin: 0 0 15px;

    padding: 0;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.45;

}


.homepage-video-card__content h3 a {

    color: #222;

    text-decoration: none;

}


.homepage-video-card__content h3 a:hover {

    color: #d71920;

}


/* =========================================================
   READ MORE
========================================================= */

.homepage-video-card__read-more {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #d71920;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

}


.homepage-video-card__read-more:hover {

    color: #111;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .homepage-videos__grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;

    }


    .homepage-video-card__image {

        height: 210px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .homepage-videos {

        margin-bottom: 30px;

    }


    .homepage-videos__header {

        margin-bottom: 18px;

    }


    .homepage-videos__heading h2 {

        font-size: 22px;

    }


    .homepage-videos__accent {

        width: 4px;

        height: 32px;

    }


    .homepage-videos__view-all {

        font-size: 13px;

    }


    .homepage-videos__grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .homepage-video-card__image {

        height: 210px;

    }


    .homepage-video-card__content h3 {

        font-size: 18px;

    }

}