.native-ads-wrapper {
  direction: rtl;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.native-ads-header {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
  animation: fadeInUp 0.6s ease-out;
}

.native-ads-header .brand-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.native-ads-separator {
  border-top: 1px solid #e0e0e0;
  margin: 6px 0 10px;
}

.native-ads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
}

.native-ad-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.native-ad-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.native-ad-item img {
  width: 100%;
  height: auto;
  display: block;
}

.native-ad-title {
  padding: 6px 8px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  line-height: 1.6;
}

#breadcrumbs {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

#breadcrumbs a {
  color: #0073aa;
  text-decoration: none;
}

#breadcrumbs a:hover {
  color: #005177;
  text-decoration: underline;
}

#breadcrumbs .breadcrumb_last {
  color: #333;
  font-weight: 500;
}

#breadcrumbs .separator {
  margin: 0 5px;
  color: #999;
}

.sbox ul.songer li {
  display: inline-flex;
}

.sidebar.left .sbox:nth-child(4) > ul > li {
  flex-wrap: wrap;
  display: inline-flex;
  padding: 0 0 0 14px;
}

.rmp-rating-widget .rmp-icon--half-highlight {
  background: linear-gradient(to left, #ffe699 50%, #ccc 50%)!important;
  -webkit-background-clip: text!important;
  -webkit-text-fill-color: transparent!important;
}

.pa-link {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.textlogo h2 {
  display: none;
}

.foot-pa:before {
  content: "";
  width: 8px;
  height: 4px;
  background: #fff;
  border-radius: 5px;
  margin-left: .4em;
  display: inline-block;
}

.foot-pa {
  color: #fff;
  font-size: 16px;
}

.foot-pa:hover {
  color: #fff;
}

.footer .footbox:nth-child(1),
.footer .footbox:nth-child(2) {
  display: none;
}

.ads-header {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.ads-header-c {
  flex-basis: 33%;
  padding: 4px;
}

.ads-header-c .yn-bnr {
  background: #fff;
  border-radius: 7px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.bell path {
  fill: rgb(19, 19, 19);
}

svg.svgIcon {
  background: rgb(228 231 136);
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.posts footer ul li.views {
  display: none;
}

span strong:before,
strong:before {
  content: " ";
}

@media (max-width: 600px) {
  .native-ads {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media only screen and (max-width: 991px) {
  .ads-header-c {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 520px) {
  .header .flex {
    justify-content: space-around;
  }
  
  .specials ul li span {
    position: inherit;
    height: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: none;
    color: #676767;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin-top: 5px;
  }
  
  .header li a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.53);
    padding: 2px 5px;
    margin: 0 2px;
    font-size: 13px;
  }
  
  .header {
    padding: 0.5em 0;
  }
  
  a.textlogo.txlg2 {
    background-size: 138px 57px;
    width: 95px;
    height: 55px;
  }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}