body {
  font-family: "Mukta", sans-serif;
}
.container {
  max-width: 95% !important;
}

/* reaction emoji post start */
.post-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  justify-content: center;
}
.reaction-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #f4f6f8;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
}
.reaction-btn:hover {
  background-color: #eef6ff;
  border-color: #0073aa;
  transform: translateY(-3px);
}
.reaction-btn.selected {
  background-color: #0073aa;
  color: #fff;
  border-color: #005f8d;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 115, 170, 0.2);
}
.reaction-emoji {
  font-size: 28px;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}
.reaction-btn:hover .reaction-emoji {
  transform: scale(1.2);
}
.reaction-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
}
.reaction-btn.selected .reaction-label {
  color: #fff;
}
.reaction-percent {
  position: absolute;
  bottom: 0px;
  font-size: 0.8rem;
  color: #666;
}
.reaction-btn.selected .reaction-percent {
  color: #d0f0ff;
}
.reactionpostbox {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}
/* Responsive */
@media (max-width: 600px) {
  .reaction-btn {
    width: 60px;
    height: 60px;
  }

  .reaction-emoji {
    font-size: 22px;
  }

  .reaction-label {
    font-size: 0.85rem;
  }

  .reaction-percent {
    font-size: 0.75rem;
  }

  .post-reactions {
    gap: 6px;
  }
}
/* reaction emoji post end  */

/* menu css start */
/* Main Navigation Wrapper */
.fsmenu {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fsmenu-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fsmenu a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-family: "Mukta", sans-serif;
  transition: color 0.3s ease;
}

.fsmenu a:hover {
  color: #e63946;
}

.fsmenu i {
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fsmenu i:hover {
  transform: scale(1.1);
  color: #e63946;
}

.fspmenu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fspmenu img.stickyLogo {
  max-height: 50px;
  margin-right: 20px;
  object-fit: contain;
}

/* Navigation Menu Styles */
#site-navigation {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

#primary-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

#primary-menu li {
  position: relative;
}

#primary-menu li a {
  font-size: 20px;
  padding: 8px 0;
  display: inline-block;
}

/* Unicode Button */
.unicode {
  font-size: 16px;
}

.unicode a {
  padding: 6px 12px;
  border: 1px solid #e63946;
  border-radius: 4px;
  color: #e63946;
  font-weight: 600;
  transition: all 0.3s ease;
}

.unicode a:hover {
  background-color: #e63946;
  color: #ffffff;
}

/* Dropdown Arrow Icon for Submenu Items */
#primary-menu > li.menu-item-has-children > a::after {
  content: "\f107"; /* Font Awesome Chevron Down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 12px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

#primary-menu > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
#primary-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  z-index: 999;
}

#primary-menu li:hover > ul {
  display: block;
}

#primary-menu li ul li {
  width: 100%;
}

#primary-menu li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

#primary-menu li ul li a:hover {
  background-color: #f5f5f5;
  color: #e63946;
}

/* Responsive Design */
@media (max-width: 992px) {
  .fsmenu-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .fspmenu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  #primary-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .unicode {
    align-self: flex-end;
    margin-top: 10px;
  }

  .fspmenu img.stickyLogo {
    margin-bottom: 10px;
  }

  #primary-menu li ul {
    position: static;
    box-shadow: none;
  }

  #primary-menu li:hover > ul {
    display: block;
  }

  #primary-menu li ul li a {
    padding-left: 30px;
  }
}

/* Initially hidden */
.sticky-logo-wrap {
  display: none;
}

/* Show only when fsmenu has sticky-active class */
.fsmenu.sticky-active .sticky-logo-wrap {
  display: block;
}

/* menu css end */

/* slide search css start */

/* Initial hidden state */
/* === Search Panel === */
.search-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: left 0.4s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  border-right: 4px solid #f1f1f1;
}

/* Active class */
.search-panel.active {
  left: 0;
}

/* === Close Button === */
/* === Close Button === */
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: #f1f1f1;
  color: #333;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
  background-color: #e60023;
  color: #fff;
  transform: rotate(90deg);
}

.close-btn:focus {
  outline: none;
}

/* Icon optional style */
.fsearch {
  cursor: pointer;
  font-size: 20px;
  color: #222;
  transition: color 0.3s;
}

.fsearch:hover {
  color: #e60023;
}

/* slide search css end */

/* === Side Menu Panel === */
.fdside-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: left 0.4s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  border-right: 3px solid #f1f1f1;
}

/* Show panel */
.fdside-menu.active {
  left: 0;
}

/* === Close Button === */
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: #f1f1f1;
  color: #333;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
  background-color: #e60023;
  color: #fff;
  transform: rotate(90deg);
}

.close-btn:focus {
  outline: none;
}

/* Optional trigger icon hover */
.fprimarumenuslide a {
  font-size: 22px;
  color: #333;
  transition: color 0.3s ease;
}

.fprimarumenuslide a:hover {
  color: #e60023;
}
/* slide menu css end */

/* Responsive Design */
@media (max-width: 768px) {
  #site-navigation {
    display: none;
  }
  .fsmenu-flex {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* header logo and ads start */

.site-branding,
.header1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  justify-content: center;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 16px;
}

.header1 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.header-logo img {
  max-height: 100px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.site-title,
.site-title a {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  text-decoration: none;
}

.site-description {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

/* Optional: Style for Nepali Date */
.header-logo br + span,
.header-logo > span,
.header-logo > div {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}

/* Header Advertisement Section */
.headerlogo-side-ads {
  flex-shrink: 0;
}

.headerlogo-side-ads img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-branding {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
  }

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

  .site-title {
    font-size: 20px;
  }

  .site-description {
    font-size: 13px;
  }

  .headerlogo-side-ads {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* menu below date  */

.widget_media_image img {
  width: 100% !important;
}

/* 404 page css start */

.error-404.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.error-404 .page-header {
  max-width: 700px;
  margin: 0 auto;
}

.error-404 .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e63946;
  animation: fadeInDown 0.8s ease-in-out;
}

.error-404 i.fa-triangle-exclamation {
  font-size: 3rem;
  color: #ff9900;
  margin-bottom: 20px;
  animation: bounceIn 1s;
}

.error-404 img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.error-404 h1:nth-of-type(2) {
  font-size: 1.3rem;
  margin: 20px 0;
  color: #555;
}

.error-404 .btn.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.error-404 .btn.btn-primary:hover {
  background-color: #0056b3;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* 404 page css emnd */

/* pagination css start */

/* Pagination container */
.page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.2rem;
  font-size: 1rem;
  color: #333;
  background-color: #f5f5f5;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Hover and focus */
.page-numbers:hover,
.page-numbers:focus {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* Current active page */
.page-numbers.current {
  background-color: #0073aa;
  color: #fff;
  font-weight: bold;
  border-color: #0073aa;
}

/* Previous and Next styles */
.page-numbers.prev,
.page-numbers.next {
  background-color: #e2e2e2;
  color: #555;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .page-numbers {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

.paginations {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;
}

/* pagination css end  */

/* tab latest popular css start */
.latesttav-post-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.latesttavpost-block-style {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;

  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.latesttavpost-block-style:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.latesttavpost-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
}

.latesttavpost-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.latesttavpost-block-style:hover .latesttavpost-thumb img {
  transform: scale(1.05);
}

.latesttavpost-content {
  flex: 1;
}

.latesttavpost-title {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.latesttavpost-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.latesttavpost-title a:hover {
  color: #0073aa;
}
@media (max-width: 600px) {
  .latesttavpost-block-style {
  }

  .latesttavpost-content {
    margin-top: 0.5rem;
  }
}

/* tav latest popular css end */

/* category page css start */

.cat_mainStory {
  margin: 2rem auto;
}

.first-cat-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.first-cat {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  padding: 20px;
}

.first-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cat-main_thumb {
  position: relative;
  overflow: hidden;
}

.cat-main_thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #eee;
}

.cat-main_thumb a:hover img {
  transform: scale(1.05);
}

.cat_heading {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.cat_heading a {
  text-decoration: none;
}

.cat_heading h2 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cat_heading h2:hover {
  color: #d6336c;
}

.cat_heading p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.block-news-title {
  text-align: center;
}
@media (min-width: 768px) {
  .first-cat {
    flex-direction: row;
  }

  .cat-main_thumb {
    flex: 1 1 45%;
  }

  .cat_heading h2 {
    font-size: 3.6rem;
  }
  .cat_heading {
    flex: 1 1 55%;
    padding: 2rem;
  }

  .cat_heading p {
    font-size: 1.05rem;
  }
}

/* category page css end  */

/* category second block css start */
.cat_mainStory-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.cat-block {
  display: flex;
  flex-direction: column;
  background-color: #fdfdfd;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.sub__thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.sub__thumb img {
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #eee;
}

.sub__thumb a:hover img {
  transform: scale(1.05);
}

.catblocktitle {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.catblocktitle h2 {
  font-size: 1.2rem;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
}

.catblocktitle a:hover h2 {
  color: #d6336c;
}
.catblocktitle a {
  text-decoration: none;
}

.author-cat-second {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.author-bishesh-ID ion-icon {
  font-size: 1.1rem;
  color: #888;
}

.author-cat-second .author {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.author-cat-second .author:hover {
  color: #d6336c;
}

@media (max-width: 768px) {
  .cat_mainStory-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* category second block css end */

/* footer css start */

.fla {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  border-top: 2px solid #ec2b2b;
  margin-top: 12px;
  border-radius: 14px;
}

.footer-last {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-last .fla1 h2,
.footer-last .fla2 h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  color: #ccc;
}

.footer-last .fla2 a {
  text-decoration: none;
  color: #ec2b2b;
  transition: color 0.3s ease;
}

.footer-last .fla2 a:hover {
  color: #ffffff;
}

.footer-last .heart {
  color: red;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .footer-last {
    flex-direction: column;
  }

  .footer-last .fla1,
  .footer-last .fla2 {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* footer css end */

/* footer first start */

.profile-footer {
  background: linear-gradient(to right, #ec2b2b, #3e2c71);
  color: #fff;
  margin-top: 20px;
  padding: 106px 20px 20px 50px;
  border-radius: 10px 0 0 10px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: #333;
  border-radius: 20px;
  padding: 30px;
}

.footer-middle ul {
  margin: 0 !important;
}

.footer-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ec2b2b;
}

.footer-middle {
  flex: 1;
  padding: 0 20px;
}

.name {
  font-size: 26px;
  color: #ec2b2b;
  margin-bottom: 5px;
}

.designation {
  font-size: 16px;
  color: #444;
  background: #e6e6e6;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.contact-info li {
  margin: 8px 0;
}

.contact-info i {
  color: #ec2b2b;
  margin-right: 10px;
}

.footer-right {
  flex: 1;
  text-align: center;
}

.company-logo {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons a {
  color: white !important;
  background-color: #ec2b2b;
  margin: 0 8px;
  padding: 10px;
  border-radius: 50%;
  /* display: inline-block; */
  text-decoration: none;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #3e2c71;
}

/* footer first end */

/* content post relatesd css start */

/* Wrapper and Section Title */
.thap-samachar-wrapper {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.related-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: left;
  border-left: 4px solid #e63946;
  padding-left: 12px;
}

/* Grid Layout */
.thap-samachar-block-css {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card Design */
.thap-samachar-style {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.thap-samachar-style:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Thumbnail */
.post1-thumbm img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Post Content */
.thap-samachar-content {
  padding: 16px 18px;
  flex-grow: 1;
  display: flex;
  height: 100px;
  align-items: center;
}

/* Title */
.post1-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.post1-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post1-title a:hover {
  color: #e63946;
}

/* Responsive Optimization */
@media (max-width: 576px) {
  .thap-samachar-wrapper {
    padding: 30px 10px;
  }

  .related-section-title {
    font-size: 22px;
  }

  .post1-thumbm img {
    height: 160px;
  }
  .profile-footer{
    padding: 107px 10px 12px 12px;
  }
  .footer-container {
    align-items: normal !important;
  }
}

/* content post related css end  */

/* post css start */
/* ===== Header Container ===== */
.postentry-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4;
}

/* ===== Post Title ===== */
.postentry-title {
  font-size: 4rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.postentry-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.postentry-title a:hover {
  color: #e63946;
}

/* ===== Meta Section Wrapper ===== */
.postconentry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* ===== Author Section ===== */
.author-single-post {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.post-idss {
  display: flex;
  align-items: center;
  gap: 12px;
}

.postauthor-single-image-css img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.postauthor-single-ID {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.postauthor-single-ID .author {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.postauthor-single-ID .author:hover {
  color: #e63946;
}

/* ===== Date Section ===== */
.postauthor-single-ID i.fa-clock {
  margin-right: 5px;
  color: #999;
}

[mainh-date] {
  font-size: 0.9rem;
  color: #666;
}

/* ===== Views ===== */
.post-views {
  background-color: #f7f8fa;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  color: #444;
  font-size: 14px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* ===== Share Icons ===== */
.post-share-icon {
  margin-left: auto;
}

.sharethis-inline-share-buttons {
  min-width: 150px;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
  .postconentry-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .post-share-icon {
    margin-left: 0;
  }
  .postentry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}

.entry-content p {
  font-size: 20px;
  text-align: justify;
  font-weight: 400;
  line-height: 30px;
}
.post-thumbnail img {
  width: 100%;
  object-fit: cover;
}

/* post css end */

/* post title stiky start */

/* post title stiky end */

/* licenceoneblock csss start */
/*==== MAIN CONTAINER ====*/
.breaking-postnines-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #f9f9fb;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/*==== SINGLE BREAKING POST ====*/
.breaking-postnine {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
}

.breaking-postnine:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*==== TITLE STYLING ====*/
.breaking-postnine h3 {
  font-size: 68px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 15px;
  line-height: 1.3;
  color: #1d1d1f;
}

.breaking-postnine h3 a {
  text-decoration: none;
  color: #1d1d1f;
  transition: color 0.3s ease;
}

.breaking-postnine h3 a:hover {
  color: #0056ff;
}

/*==== META INFO ====*/
.breakingpost-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #666;
  justify-content: center;
}

.author-avatarnine img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.author-namenine {
  font-weight: 600;
  color: #333;
}

/*==== VIDEO FRAMES ====*/
.facebook-live-video,
.youtube-live-video {
  position: relative;
  padding-top: 56.25%;
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ddd inset, 0 4px 20px rgba(0, 0, 0, 0.08);
}

.facebook-live-video iframe,
.youtube-live-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*==== FEATURED IMAGE ====*/
.featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin: 25px 0;
}

.featured-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.featured-image img:hover {
  transform: scale(1.02);
}

/*==== EXCERPT ====*/
.breaking_excerptnine {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: #444;
}

/*==== AD SECTION ====*/
.mainsads {
  padding: 20px 0;
}

.newspostsideadss.active {
  /* display: block;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04); */
  margin-top: 12px;
  margin-bottom: 12px;
}

.newspostsideadss.inactive {
  display: none;
}

/*==== RESPONSIVE ====*/
@media (max-width: 768px) {
  .breaking-postnine h3 {
    font-size: 22px;
  }

  .breaking_excerptnine {
    font-size: 15px;
  }
}

/* licence block csss end  */

.meta-box-sortables input {
  width: -webkit-fill-available !important;
}
.custom-meta-box label {
  font-weight: 600;
  font-size: 14px;
  color: #1e1e1e;
  margin-bottom: 6px;
  display: inline-block;
}

.custom-meta-box input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.custom-meta-box input[type="text"]:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
  outline: none;
}

.postbox .inside {
  padding: 20px;
}

.post-subtitle {
  text-align: center;
  font-size: 22px;
  color: #777777;
  margin: 10px 0;
  line-height: 30px;
}
.post-tags {
  text-align: center;
  font-size: 25px;
  padding: 5px 20px 0 20px;
  font-weight: 800;
  color: #ff0000;
}

.postcontent-tags {
  background: inherit;
  color: #ff0000;
  padding: 0;
  font-weight: bold;
  border: 0;
}

.postcontent-subtitle {
  font-style: italic;
  font-size: 18px;
  margin: 0 0 20px 0;
}

/* author css start */
.author-info {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.author__img img {
  border-radius: 50%;
  border: 4px solid #f3f4f6;
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.author__info {
  flex: 1;
  min-width: 250px;
}

.author__info .tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author__info h5 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.author__info p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.ok-btn-wrapper {
  margin-top: 1rem;
}

.ok-btn-wrapper .btn {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  transition: background 0.3s ease;
  display: inline-block;
}

.ok-btn-wrapper .btn:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
}
@media (max-width: 600px) {
  .author-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author__info {
    align-items: center;
  }

  .ok-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/*  */

/* Author Header */
.author-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
}

.author-avatar img {
  border-radius: 50%;
  border: 3px solid #f3f4f6;
  width: 100px;
  height: 100px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.author-meta .author-name {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.author-meta .author-bio {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Section Title */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 2rem;
  border-left: 4px solid #3b82f6;
  padding-left: 12px;
}

/* Post Grid */
.authorpost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.authorpost-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.authorpost-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.authorpost-thumb img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 200px;
  min-height: 200px;
  object-fit: cover;
}

.authorpost-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  padding: 1rem;
  transition: color 0.3s ease;
}

.authorpost-title:hover {
  color: #2563eb;
}

.authorpost-card a {
  text-decoration: none;
}

@media (max-width: 640px) {
  .author-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-meta .author-name {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }
}

/* author css end */

/* categories css start */

/* Category Title Block */
.frontblocktitles {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  background-color: #f9fafb;
  border-left: 4px solid #3b82f6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Category Link Container */
.frontbtitle a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
  justify-content: space-between;
}

/* Heading */
.frontbtitle h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #1e3a8a;
  line-height: 1.2;
}

/* Icon & 'View All' Text */
.frontbtitle i {
  font-size: 0.9rem;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.frontbtitle a:hover i {
  transform: translateX(4px);
  color: #1d4ed8;
}

.frontbtitle a:hover h1 {
  color: #2563eb;
}
.catsabai:hover {
  background-color: #1e3a8a;
  color: #fff;
  padding: 3px 20px 3px;
  border-radius: 14px;
}
.frontbtitle i:hover {
  color: #fff !important;
}

/* categories css end  */

/* licence two css start */

/* third css start */
/* Wrapper */
.blocktwocssthird {
  padding: 2rem 1rem;
}

/* Each Post Container */
.blocktwo-thirdpost-item {
  display: flex;
  margin-bottom: 12px;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Styling */
.blocktwo-thirdpost-image a img {
  width: 100%;
  min-height: 116px;
  height: 100%;
  max-height: 116px;
  object-fit: cover;
  display: block;
}

/* Title Styling */
.blocktwo-thirdpost-title {
  padding: 1rem;
}

.blocktwo-thirdpost-title h1 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.blocktwo-thirdpost-title a {
  color: #151515 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blocktwo-thirdpost-title a:hover {
  color: #2563eb;
}

@media (max-width: 480px) {
  .blocktwo-thirdpost-title h1 {
    font-size: 1.1rem;
  }
  .blocktwo-thirdpost-image a img {
    height: 160px;
  }
}

/* third css end */

/* second css start */
/* Main wrapper */
.blocktwocsssecond {
  padding: 1.5rem 1rem;
}

/* Grid wrapper */
.blocktwo-second-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Each post item */
.blocktwo-secondpost-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Image styling */
.blocktwo-secondpost-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blocktwo-secondpost-item:hover .blocktwo-secondpost-image img {
  transform: scale(1.05);
}

/* Title on image */
.blocktwo-secondpost-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  z-index: 2;
}

.blocktwo-secondpost-title h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.blocktwo-secondpost-title a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blocktwo-secondpost-title a:hover {
  color: #facc15; /* Amber-400 */
}

/* second css end  */

/* first css start */
.blocktwo-post-image {
  position: relative;
  overflow: hidden;
}

.blocktwo-post-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blocktwo-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  z-index: 2;
}

.blocktwo-post-title h1 {
  font-size: 2.25rem;
  margin: 0;
  line-height: 1.4;
}

.blocktwo-post-title a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .blocktwo-post-title h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .blocktwo-post-title h1 {
    font-size: 1.4rem;
  }
}
/* first css end  */

/* licence two css end */

/* licence three css start */

/* first start */
.blockthree-post-image {
  position: relative;
  overflow: hidden;
}

.blockthree-post-image img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
}

.blockthree-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  color: #fff;
  z-index: 2;
  box-sizing: border-box;
}

.blockthree-post-title h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.blockthree-post-title a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockthree-post-title a:hover {
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blockthree-post-image img {
    height: auto !important;
  }

  .blockthree-post-title h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blockthree-post-image img {
    height: auto !important;
  }

  .blockthree-post-title h1 {
    font-size: 1rem;
  }
}

/* first end  */

/* second star */

.blockthree-secondpost-item {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
  display: flex;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blockthree-secondpost-image img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  max-height: 90px;
  min-width: 115px;
  max-width: 115px;
  object-fit: cover;
  display: block;
}

.blockthree-secondpost-title {
  padding: 15px;
  background-color: #f9f9f9;
}

.blockthree-secondpost-title h1 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.blockthree-secondpost-title a {
  color: #111 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockthree-secondpost-title a:hover {
  color: #e91e63;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .blockthree-secondpost-title h1 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blockthree-secondpost-title h1 {
    font-size: 0.95rem;
  }
}
/* second end */
/* licence three css end */

.above-ads {
  margin-top: 12px;
  margin-bottom: 12px;
}
.adsstiky {
  position: sticky;
  top: 80px;
}

/* licence four css start */

.blockfour-posts {
  position: relative;
}

.blockfour-firstpost-item::before {
  background: #000000
    url(http://localhost:10003/wp-content/uploads/2025/04/bigullpng.png);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100% - -69px) !important;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-position: right bottom;
  background-size: 100%;
  background-repeat: no-repeat;
}

.blockfour-post-title {
  padding: 100px 30px 80px 50px;
}

.blockfour-post-title h1 a {
  text-decoration: none;
  color: #fff !important;
}

.blockfour-post-title p {
  color: aquamarine !important;
  font-size: 15px;
  font-weight: 500;
}

.blockfour-post-image a img {
  margin-top: 50px;
  height: 90%;
}

@media (max-width: 768px) {
  .blockfour-firstpost-item::before {
    height: 100% !important;
    width: 100% !important;
  }

  .blockfour-post-title {
    padding: 50px 30px 36px 40px;
    margin: 12px;
  }
}

/* second block css start */

.blockfour-second-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blockfour-secondpost-image a {
  display: block;
}
.blockfourcsssecond {
  margin-top: 90px;
}

.blockfour-secondpost-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 140px;
  max-height: 140px;
  display: block;
  border-radius: 4px;
  border-bottom: 2px solid #ddd;
  transition: transform 0.3s ease;
}

.blockfour-secondpost-title {
  padding: 1rem;
  text-align: left;
}

.blockfour-secondpost-title h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blockfour-secondpost-title h1 a {
  color: inherit;
  text-decoration: none;
}

.blockfour-secondpost-title h1 a:hover {
  color: #0077cc;
}
.blockfour-secondpost-item {
  display: flex;
}

/* Responsive text for mobile */
@media (max-width: 768px) {
  .blockfour-secondpost-title h1 {
    font-size: 1rem;
  }
}

/* second block css end  */

/* side start */
.blockfourcsssecondside {
  margin: 2rem auto;
  padding: 1rem;
  border: 1px solid #00000042;

  border-radius: 16px;

  transition: all 0.3s ease;
}

.blockfour-second-postsside {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blockfour-secondpostside-item {
  border-radius: 12px;
  overflow: hidden;
  border-bottom: 1px solid #00000042;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blockfour-secondpostside-image a {
  display: block;
}

.blockfour-secondpostside-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blockfour-secondpostside-title {
  padding: 1rem;
  text-align: left;
}

.blockfour-secondpostside-title h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blockfour-secondpostside-title h1 a {
  color: inherit;
  text-decoration: none;
}

.blockfour-secondpostside-title h1 a:hover {
  color: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .blockfour-secondpostside-title h1 {
    font-size: 1rem;
  }

  .blockfour-second-postsside {
    gap: 1rem;
  }
}

/* side end  */

/* licence four css end */

/* licence five css start */
.blockfivecssfirst {
  padding: 30px 20px;
  background-color: #f9f9f9;
}

.blockfive-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blockfive-firstpost-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding: 25px;
  min-height: 175px;
}

.blockfive-firstpost-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.blockfive-post-image {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blockfive-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blockfive-firstpost-item {
  display: flex;
  gap: 20px;
}

.blockfiveauthor-avatar {
  min-width: 78px;
  max-width: 78px;
  min-height: 78px;
  max-height: 78px;

  overflow: hidden;
  border: 2px solid #fff;
  background-color: #fff;

  z-index: 2;
}

.blockfiveauthor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blockfive-post-title h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.4;
}

.blockfive-post-title h1 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockfive-post-title h1 a:hover {
  color: #0073e6;
}

.post-meta-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}

.post-meta-author i {
  color: #0073e6;
}

/* licence five css end */

/* block six css start */

.blocksixcsssecond {
  padding: 30px 20px;
  background-color: #f9f9f9;
}

.blocksix-second-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blocksixcsssecond {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 12px;
  background-color: #f9fafb;
}
.blocksix-secondpost-item {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blocksix-secondpost-image {
  width: 100%;
  height: 180px;
  background-color: #eee;
  overflow: hidden;
}

.blocksix-secondpost-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blocksix-secondpost-image a:hover img {
  transform: scale(1.05);
}

.blocksix-secondpost-title {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.blocksix-secondpost-title h1 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.blocksix-secondpost-title h1 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blocksix-secondpost-title h1 a:hover {
  color: #0073e6;
}

/* block six css end */

/* block seven css start */
.blocksevencssfirst {
  padding: 40px 20px;
  background-color: #ffffff;
}

.blockseven-posts {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.blockseven-firstpost-item {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fdfdfd;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blockseven-firstpost-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blockseven-post-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #eaeaea;
}

.blockseven-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blockseven-post-image a:hover img {
  transform: scale(1.03);
}

.blockseven-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 80%);
  width: 100%;
  color: #fff;
}

.blockseven-post-title h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.blockseven-post-title h1 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockseven-post-title h1 a:hover {
  color: #f0c040;
}

@media (max-width: 768px) {
  .blockseven-post-image {
    height: 300px;
  }

  .blockseven-post-title h1 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .blockseven-post-image {
    height: 240px;
  }

  .blockseven-post-title {
    padding: 16px;
  }

  .blockseven-post-title h1 {
    font-size: 18px;
  }
}

/* second blocs csss start */

.blocksevencsssecond {
}

.blockseven-second-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blockseven-secondpost-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 12px;
  height: 100%;
  border-top: 1px dotted #33333363;
  padding: 9px 0;
}

.blockseven-secondpost-image {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  background-color: #e0e0e0;
  overflow: hidden;
}

.blockseven-secondpost-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blockseven-secondpost-title {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.blockseven-secondpost-title h1 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.blockseven-secondpost-title h1 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockseven-secondpost-title h1 a:hover {
  color: #d33;
}

@media (max-width: 768px) {
  .blockseven-secondpost-image {
    height: 160px;
  }

  .blockseven-secondpost-title h1 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .blockseven-secondpost-image {
    height: 140px;
  }

  .blockseven-secondpost-title {
    padding: 12px;
  }

  .blockseven-secondpost-title h1 {
    font-size: 15px;
  }
}

/* second block css end */

/* block seven css end */

/* block nine css start */

.blocknine-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.blocknine-firstpost-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blocknine-post-image {
  position: relative;
}

.blocknine-post-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.blocknine-post-image:hover img {
  transform: scale(1.05);
}

.blocknine-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  z-index: 1;
  transition: 0.3s ease;
}

.blocknine-post-title h1 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
}

.blocknine-post-title a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}

.blocknine-post-title a:hover {
}

@media (max-width: 600px) {
  .blocknine-post-title h1 {
    font-size: 1rem;
  }
  .blocknine-post-image img {
    height: 300px;
  }
}

/* block nine css end  */

/* block ten css start */

.blocktencssfirst {

}

.blockten-posts {
  display: flex;
  justify-content: center;
}

.blockten-firstpost-item {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.blockten-post-image {
  position: relative;
}

.blockten-post-image img {
  width: 100%;
  height: 442px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blockten-post-title {
  padding: 4px;
}

.blockten-post-title h1 {
  font-size: 25px;
  margin: 0;
  color: #333;
  line-height: 1.5;
  font-weight: 600;
}

.blockten-post-title h1 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockten-post-title h1 a:hover {
  color: #00b7ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blocktencssfirst {
    padding: 1rem;
  }

  .blockten-post-title h1 {
    font-size: 1.4rem;
  }
  .blockten-post-image img {
    height: auto !important;
  }
  .blockten-secondpost-item {
    flex-direction: row !important;
  }
}

@media (max-width: 480px) {
  .blockten-post-title h1 {
    font-size: 1.2rem;
  }
  .blockten-post-image img {
    height: auto !important;
  }

  .blockten-post-title {
    padding: 0.8rem;
  }
}

/* block ten first */

/* block tend first end */

/* block ten second start */

.blocktencsssecond {
}

.blockten-second-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.blockten-secondpost-item {
  border-radius: 4px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.blockten-secondpost-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blockten-secondpost-title {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.blockten-secondpost-title h1 {
  font-size: 20px;
  margin: 0;
  color: #222;
  line-height: 1.4;
  font-weight: 500;
}

.blockten-secondpost-title h1 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockten-secondpost-title h1 a:hover {
  color: #0073aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blocktencsssecond {
    padding: 1.5rem 1rem;
  }

  .blockten-secondpost-title h1 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blockten-secondpost-image img {
    height: 100px;
    min-width: 100px;
    max-width: 100px;
    border-radius: 4px;
  }

  .blockten-secondpost-title h1 {
    font-size: 0.95rem;
  }
}

/* block ten second end */

/* block ten css end  */

/* block eleven css start */

/* first css start */
.blockelevencssfirst {
  background-color: #ffffff;
}

.blockeleven-posts {
  display: flex;
  justify-content: center;
}

.blockeleven-firstpost-item {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blockeleven-post-image {
  position: relative;
}

.blockeleven-post-image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Text Overlay */
.blockeleven-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.blockeleven-post-title h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.blockeleven-post-title h1 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockeleven-post-title h1 a:hover {
  color: #00baff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .blockelevencssfirst {
    margin-bottom: 12px;
  }
  .blockeleven-post-image img{
    min-height: 320px !important;
    max-height: 320px !important;
  }

  .blockeleven-post-title h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .blockeleven-post-title {
    padding: 1rem;
  }
  .blockeleven-post-image img{
    min-height: 320px !important;
    max-height: 320px !important;
  }


  .blockeleven-post-title h1 {
    font-size: 1.2rem;
  }
}

/* first css end */

/* second css start */
.blockelevencsssecond {

}

.blockeleven-second-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blockeleven-secondpost-item {

  border-radius: 12px;
  overflow: hidden;

}



.blockeleven-secondpost-image img {
  width: 100%;
  height: auto;
  min-height: 175px;
  max-height: 175px;
  display: block;
  border-bottom: 1px solid #eee;
}

.blockeleven-secondpost-title {
  padding: 1rem 1.2rem;
}

.blockeleven-secondpost-title h1 {
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

.blockeleven-secondpost-title h1 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockeleven-secondpost-title h1 a:hover {
  color: #0056b3;
}


/* second css end */

/* third css start */
.blockelevencssthird {

}

.blockeleven-thirdpost-item{
  display: flex;
  gap: 12px;
}
.blockeleven-thirdpost-item {

  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
  border-top: 1px dotted #33333363;
  padding: 20px 0;
  
}



.blockeleven-thirdpost-image img {
  width: 100%;
  height: auto;
  min-width: 130px;
  max-width: 130px;
  max-height: 90px;
  min-height: 90px;
  display: block;
  border-bottom: 1px solid #eee;
}



.blockeleven-thirdpost-title h1 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.blockeleven-thirdpost-title h1 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockeleven-thirdpost-title h1 a:hover {
  color: #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blockeleven-thirdpost-title h1 {
      font-size: 1.1rem;
  }
  .blockeleven-secondpost-image img{
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .blockelevencssthird {
      padding: 1rem;
  }

  .blockeleven-thirdpost-title h1 {
      font-size: 1rem;
  }
  .blockeleven-secondpost-image img{
    height: auto !important;
  }
}




/* third css ene */

/* block eleven css end  */



/* frontmobilelatest start */

.mobilemenu-post-block {
  padding: 16px;
  background-color: #fff;
  border-top: 1px solid #eaeaea;
}

.mobilemenupost-block-style {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.mobilemenupost-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobilemenupost-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mobilemenupost-thumb img:hover {
  transform: scale(1.05);
}

.mobilemenupost-content {
  flex: 1;
}

.mobilemenupost-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #222;
}

.mobilemenupost-title a {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobilemenupost-title a:hover {
  color: #0077cc;
}

/* Hide on desktop/tablet */
@media (min-width: 768px) {
  .mobilemenu-post-block {
      display: none;
  }
}

/* frontmobile latest end */



/* desktop responsive start */

@media only screen and (width: 1366px) and (height: 768px) {

}

@media only screen and (width: 1280px) and (height: 720px) {

}