@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap");

@import url("pattern/tokens.css");
@import url("pattern/base.css");
@import url("pattern/layout.css");
@import url("pattern/patterns.css");

@import url("pattern/components/header.css");
@import url("pattern/components/home-hero.css");

/* Fonts */



[type=email],
[type=number] {
  direction: rtl !important;
}

/* Featured */
.k-section--featured {
  padding-block: var(--sp-9);
}

.k-featured {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: 100%;
}

.k-featured__col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.k-featured__feature {
  flex: 2 0 0;
  min-width: 0;
  display: flex;
}

.k-featured__feature-link {
  width: 100%;
  display: block;
  flex: 1 1 0;
  aspect-ratio: 16 / 9;
  height: auto;
}

.k-mini-card {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.k-featured__col .k-mini-card {
  flex: 1 1 0;
}

.k-mini-card__link {
  flex: 1 1 0;
  display: block;
}

.k-mini-card__thumb {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 260 / 160;
  object-fit: cover;
  display: block;
}

.k-mini-card__title {
  font-family: var(--font-title);
  font-weight: var(--fw-400);
  font-size: var(--fs-16);
  line-height: 1.4;
  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.k-media-cover__title {
  font-family: var(--font-title);
  font-weight: var(--fw-800);
  font-size: var(--fs-22);
  line-height: 1.3;
  color: var(--c-white);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Featured Mobile */
.k-featured-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .k-featured {
    display: none !important;
  }

  .k-featured-mobile {
    display: block;
  }

  .k-featured-mobile .carousel-item {
    height: 340px;
  }

  .k-featured-mobile .carousel-item>a,
  .k-featured-mobile .carousel-item>article,
  .k-featured-mobile .carousel-item>div {
    height: 100%;
    display: block;
  }

  .k-featured-mobile .k-media-cover {
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
  }

  .k-featured-mobile .k-media-cover__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    display: block;
  }

  .k-featured-mobile__indicators {
    position: static !important;
    margin-top: var(--sp-6);
  }

  .k-featured-mobile__indicators button {
    background: #e2e2e2;
  }

  .k-featured-mobile__indicators button.is-active {
    background: var(--c-primary);
  }
}

/* Category Grid */
.k-section--category-grid {
  padding-top: var(--sp-9);
}

.k-category-grid__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

@media (max-width: 992px) {
  .k-category-grid__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .k-category-grid__grid {
    grid-template-columns: 1fr;
  }

  .k-category-grid__item .k-news-list__thumb-wrap {
    height: 200px !important;
    width: 100%;
  }
}

.k-category-grid__secondary:not(:has(.k-section-head)) {
  margin-top: 64px;
}

.k-category-grid__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.k-category-grid__tabs {
  display: flex;
  align-items: end;
  gap: var(--gap-28);
  margin: 0;
  padding: 0;
  border: 0;
}

.k-category-grid__tab {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0;

  font-family: var(--font-title);
  font-weight: var(--fw-400);
  font-size: var(--fs-34);
  line-height: var(--lh-tight);
  color: rgba(0, 0, 0, 0.45);

  position: relative;
  cursor: pointer;
}

.k-category-grid__tab:hover {
  color: var(--c-dark) !important;
  font-weight: 700;
}

.k-category-grid__tab.active {
  color: var(--c-dark);
  font-weight: var(--fw-800);
  padding-right: 18px !important;
}

.k-category-grid__tab.active::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-primary);
}

.k-category-grid__tab:focus {
  outline: none !important;
  box-shadow: none !important;
}

.k-category-grid__item {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 6px;

  gap: 12px;
  min-height: 157px;
  align-items: center;
  overflow: hidden;
}

.k-news-list__item {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.k-category-grid__item .k-news-list__thumb-wrap {
  width: 155px;
  height: 118px;
  flex: 0 0 auto;
}

.k-category-grid__item .k-news-list__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.k-category-grid__item .k-news-list__title-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: right;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 991.98px) {


  .k-category-grid__secondary {
    display: none;
  }


}

@media (max-width:540px) {
  .k-category-grid__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .k-category-grid__item .k-news-list__thumb-wrap {
    width: 100%;
    height: 180px;
  }
}

/* Reels */


.k-reels__grid {
  display: grid;
  grid-template-columns: 1fr 390px 1fr;
  gap: 22px;
  align-items: stretch;
}

.k-reels__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.k-reels__media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-width: 0;
}

.k-reels__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bk-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
  pointer-events: none;
}

.k-reels__media-ui {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.k-reels__mute {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, .35);
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.k-reels__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: rgba(255, 255, 255, .18);
}

.k-reels__progress-bar {
  display: block;
  height: 100%;
  width: 35%;
  background: var(--c-primary);
}

.k-reel-item {
  display: flex;
  gap: 12px;
  padding: 12px;

  background: var(--c-white);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  padding: 16px;

  border-right: 2px solid var(--c-primary);
  opacity: 1;

  box-sizing: border-box;
}

.k-reel-item__thumb {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.k-reel-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.k-reel-item__title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: var(--fw-400);
  font-size: var(--fs-14);
  line-height: 1.4;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.k-reel-item__time {
  font-family: var(--font-base);
  font-weight: var(--fw-700);
  font-size: 12px;
  opacity: .65;
}

.k-reel-item:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

.k-reels__mobile-bar {
  display: none;
}

.k-reels__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.k-reels__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .k-reels__grid {
    grid-template-columns: 1fr;
  }

  .k-reels__col--right,
  .k-reels__col--left {
    display: none;
  }

  .k-reels__media {
    height: 420px;
  }

  .k-reels__mobile-bar {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow: auto;
    padding-bottom: 6px;
  }

  .k-reels__mobile-bar .k-reel-item {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}




/* Cards Grid */


.k-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-6);
}

.k-media-card {
  min-width: 0;
}

.k-media-card__link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.k-media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .35s ease;
}

.k-media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .65) 100%);
}

.k-media-card__content {
  position: absolute;
  inset-inline: var(--sp-6);
  bottom: var(--sp-6);
  display: grid;
  gap: 10px;
  z-index: 2;
}

.k-media-card__time {
  font-family: var(--font-base);
  font-weight: var(--fw-500);
  font-size: var(--fs-14);
  color: rgba(255, 255, 255, .85);
}

.k-media-card__title {
  font-family: var(--font-title);
  font-weight: var(--fw-700);
  font-size: var(--fs-18);
  line-height: 1.35;
  color: var(--c-white);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.k-media-card__link:hover .k-media-card__img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .k-cards-grid {
    grid-template-columns: 1fr;
  }

  .k-media-card__link {
    aspect-ratio: 16 / 9;
  }
}

/* Cover Banner */
section.k-section.k-cover-banner {
    height: 400px;
}
.k-cover-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: stretch;
}


.k-cover-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.k-cover-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

@media (max-width: 991.98px) {
  .k-cover-banner {
    min-height: 280px;
  }
}

/* Footer */
.k-footer {
  background: var(--bg-dark);
  color: var(--c-white);
  padding-block: var(--sp-9);
}

.k-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-9);
  align-items: start;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.k-footer__col {
  min-width: 0;
}

.k-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--sp-6);
}

.k-footer__brand img {
  width: clamp(110px, 10vw, 150px);
  height: auto;
  display: block;
}

.k-footer__about-text,
.k-footer__email,
.k-footer__muted {
  font-family: var(--font-base);
  font-weight: var(--fw-400);
  font-size: var(--fs-14);
  line-height: 1.8;
  margin: 0 0 var(--sp-4);
  opacity: .9;
}

.k-footer__muted {
  opacity: .75;
}

.k-footer__email a {
  color: var(--c-primary);
  text-decoration: none;
  font-weight: var(--fw-700);
}

.k-footer__email a:hover {
  text-decoration: underline;
}

.k-footer__links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.k-footer__title {
  font-family: var(--font-title);
  font-weight: var(--fw-800);
  font-size: var(--fs-16);
  margin: 0 0 var(--sp-5);
}

.k-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.k-footer__links a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-family: var(--font-base);
  font-weight: var(--fw-400);
  font-size: var(--fs-14);
}

.k-footer__links a:hover {
  color: var(--c-white);
}

.k-footer__form {
  width: 100%;
}

.k-footer__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--c-white);

  border-radius: 14px;
  padding: 14px 16px;

  font-family: var(--font-base);
  font-weight: var(--fw-400);
  font-size: var(--fs-14);

  outline: none;
  box-sizing: border-box;
  direction: rtl;
}

.k-footer__input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.k-footer__input:focus {
  border-color: rgba(250, 204, 26, .65);
  box-shadow: 0 0 0 4px rgba(250, 204, 26, .14);
}

.k-footer__bottom {
  padding-top: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.k-footer__bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);

  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: var(--fw-700);
  font-family: var(--font-base);
}

.k-icon:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--c-white);
}

.k-footer__bottom-center {
  justify-content: center;
  text-align: center;
  font-family: var(--font-base);
  font-size: var(--fs-14);
  opacity: .85;
}

.k-footer__powered {
  color: var(--c-primary);
  text-decoration: none;
  font-weight: var(--fw-700);
}

.k-footer__powered:hover {
  text-decoration: underline;
}

.k-footer__bottom-item.reserved {
  justify-content: flex-end;
  text-align: left;
  opacity: .85;
}

.k-footer__bottom-item.reserved p {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs-14);
}

@media (max-width: 991.98px) {
  .k-footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .k-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .k-footer__bottom-item,
  .k-footer__bottom-item.reserved {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .k-footer__links-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .k-icon {
    width: 34px;
    height: 34px;
  }
}

/* FAB News */
.k-fab-news {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  direction: rtl;
  transition: bottom 0.4s ease-out;
}

.k-fab-news__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 0;
  cursor: pointer;

  border-radius: 999px;
  background: #FACC1A;

  color: #1A1A1A;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.k-fab-news__btn:hover {
  filter: brightness(.98);
}

.k-fab-news__btn:active {
  transform: translateY(1px);
}

.k-fab-news__icon {
  position: relative;
  width: 27px;
  height: 30px;
  flex-shrink: 0;
  aspect-ratio: 9 / 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(26, 26, 26, .08);
}

.k-fab-news__label {
  white-space: nowrap;
}

.k-fab-news__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);

  width: min(520px, calc(100vw - 32px));
  border-radius: 14px;

  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}

.k-fab-news.is-open .k-fab-news__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.k-fab-news__list {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  align-self: stretch;
}

.k-fab-news__item {
  width: 100%;
  text-decoration: none;
  color: inherit;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px;
  border-right: 2px solid #FACC1A;

  transition: .18s ease;
}

.k-fab-news__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.k-fab-news__text {
  flex: 1 1 auto;
  color: #1A1A1A;
  text-align: right;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;

  transition: transform .2s ease, color .2s ease;
  transform-origin: right center;
}

.k-fab-news__item:hover .k-fab-news__text {
  transform: scale(1.06);
  font-weight: var(--fw-700);
}

.k-fab-news__svg {
  width: 27px;
  height: 30px;
  flex-shrink: 0;
}

.k-fab-news__svg-dot {
  transform-origin: 19px 5px;
  animation: kFabDotPulseNews 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(201, 0, 0, .35));
}

@keyframes kFabDotPulseNews {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(1.22);
    opacity: 1;
  }

  65% {
    transform: scale(1.02);
    opacity: .96;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .k-fab-news {
    right: 12px;
    bottom: 12px;
  }

  .k-fab-news__list {
    padding: 16px;
    gap: 12px;
  }

  .k-fab-news__item {
    padding: 12px;
    gap: 12px;
  }

  .k-fab-news__thumb {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .k-fab-news__svg-dot {
    animation: none;
  }
}

.k-fab-news__list {
  max-height: calc((56px + 32px) * 4 + 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-left: 8px;
}

.k-fab-news__list::-webkit-scrollbar {
  width: 6px;
}

.k-fab-news__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .18);
  border-radius: 999px;
}

.k-fab-news__list::-webkit-scrollbar-track {
  background: transparent;
}

/* =========================
   Component: Social Buttons
========================= */
.k-social {
  display: flex;
  align-items: center;
  gap: 16px;

  width: 100%;
  flex-wrap: nowrap;
 
}

.k-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  padding: 5px;

  border-radius: 100px;
  background: #E2E2E280;
  color: #1A1A1A;
  text-decoration: none;
  box-sizing: border-box;
}

.k-social__icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

/* =========================
   Breadcrumb
========================= */
.k-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 20px;
  gap: var(--gap-20);
  box-sizing: border-box;
}

.k-breadcrumb__link {
  text-decoration: none;
  color: rgba(26, 26, 26, 0.5);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0%;
}

.k-breadcrumb__link:hover {
  text-decoration: none;
}

.k-breadcrumb__current {
  color: #1a1a1a;
  text-align: right;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0%;
  text-decoration: none;
}

/* =========================
   Post Head / Layout
========================= */
.k-post {
  display: flex;
  flex-direction: column;
  gap: var(--gap-28);
}

.k-post-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* meta + hero */
  padding-block: 16px;
}

.k-post-head__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* hero image */
.k-post-head .k-media-cover {
  height: 550px;
}

/* layout split */
.k-layout__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.k-layout__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =========================
   Post Body Typography
========================= */
.k-post-body p {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}

.k-post-body p:first-of-type {
  font-weight: 700;
}

/* =========================
   Responsive
========================= */

/* <= 760px */
@media (max-width: 760px) {
  .k-post-head .k-media-cover {
    height: 400px;
  }
}

/* <= 576px */
@media (max-width: 576px) {
  .k-breadcrumb {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 8px;
    padding: 14px 16px;
  }

  .k-breadcrumb__link,
  .k-breadcrumb__current {
    font-size: 16px;
    line-height: 24px;
  }

  .k-breadcrumb__sep {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
  }

  .k-breadcrumb__current {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .k-breadcrumb.is-break-current .k-breadcrumb__current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  @media (max-width: 576px) {
    .k-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      padding: 14px 16px;
    }

    .k-breadcrumb a,
    .k-breadcrumb .k-breadcrumb__sep {
      white-space: nowrap;
      flex: 0 0 auto;
    }


    .k-breadcrumb>*:last-child {
      flex: 1 1 100%;
      min-width: 0;

      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;

      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      line-height: 1.35;

    }
  }

  .k-layout__main {

    gap: 18px;
  }

  .k-post-head .k-media-cover {
    height: 300px;
  }

  .k-post-body p {
    font-size: 16px;
  }
}

.k-chips__list {
  display: flex;

  align-items: center;
  overflow: hidden;
  gap: 12px;
}

.k-chip {
  display: inline-flex;
  align-items: center;
  height: 39px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--c-gray-100);
  color: var(--c-dark);
  user-select: none;
  pointer-events: none;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.k-chip.is-active {
  background: var(--c-primary);
  color: #fff;
}

/* ==========================
   Load more button wrapper
========================== */
.k-category-grid__loadmore {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* ==========================
   Category Hero (Desktop)
========================== */
.k-category-hero__grid {
  --gap: 20px;
  --H: 620px;
  --half: calc((var(--H) - var(--gap)) / 2);

  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--gap);
  align-items: stretch;
}

.k-category-hero__main {
  height: var(--H);
  overflow: hidden;
}

.k-category-hero__aside {
  height: var(--H);
  display: grid;
  grid-template-rows: var(--half) var(--half);
  gap: var(--gap);
}

.k-category-hero__lead,
.k-category-hero__item {
  height: 100%;
  overflow: hidden;
}

.k-category-hero__pair {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.k-category-hero .k-media-cover {
  width: 100%;
  height: 100%;
  display: block;
}

.k-category-hero .k-media-cover__img,
.k-post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.k-section--category-hero .k-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================
   Category Hero Mobile Slider
========================== */
.k-category-hero-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .k-category-hero {
    display: none !important;
  }

  .k-category-hero-mobile {
    display: block;
  }

  .k-category-hero-mobile .carousel-item {
    height: 300px;
  }

  .k-category-hero-mobile .k-media-cover {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  .k-category-hero-mobile .k-media-cover__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .k-category-hero-mobile__indicators {
    position: static !important;
    margin-top: var(--sp-6);
  }

  .k-category-hero-mobile__indicators button {
    background: #e2e2e2;
  }

  .k-category-hero-mobile__indicators button.is-active {
    background: var(--c-primary);
  }
}

/* ==========================
   Side Card (Most Read)
========================== */
.k-side-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  overflow: hidden;
}

.k-side-card__head {
  flex: 0 0 auto;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.k-side-card__title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: var(--fw-800);
  font-size: 20px;
  line-height: 1.3;
  color: var(--c-dark);
}

.k-side-card__list {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.k-side-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  transition: .18s ease;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.k-side-card__item:last-child {
  border-bottom: 0;
}

.k-side-card__item:hover {
  background: rgba(250, 204, 26, .10);
}

.k-side-card__text {
  min-width: 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-dark);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.k-side-card__list::-webkit-scrollbar {
  width: 6px;
}

.k-side-card__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15);
  border-radius: 999px;
}


/* =========================
   Hero Carousel Indicators (same old look)
========================= */


.k-hero-carousel__indicators.carousel-indicators {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 18px;
  z-index: 5;

  display: flex;
  gap: 10px;

  margin: 0;
  padding: 0;
}

.k-hero-carousel__indicators.carousel-indicators [data-bs-target] {
  flex: 1 1 0;
  width: auto;
  height: 3px;

  border: 0;
  border-radius: 999px;

  opacity: 1;
  background: rgba(255, 255, 255, .55);

  transition: .2s ease;
}


.k-hero-carousel__indicators.carousel-indicators .active {
  background: var(--c-primary);
}

/* Mobile breadcrumb fix */
@media (max-width: 576px) {
  .k-breadcrumb__current {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
}