@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");
:root {
  --color-primary: #e63746;
  --color-primary-hover: #c92f3c;
  --bs-primary: #e63746;
  --bs-primary-rgb: 230, 55, 70;
  --color-bg-body: #f8f9fa;
  --color-bg-surface: #ffffff;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
}

.dark {
  --color-primary: #e63746;
  --color-primary-hover: #ef4444;
  --color-bg-body: #0f172a;
  --color-bg-surface: #1e293b;
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-border: #334155;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-section {
  padding: 1.5rem 0;
  background: var(--color-bg-body);
}

.hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 1.5rem;
  min-height: 450px;
}
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 240px 1fr 240px;
    gap: 1rem;
  }
}
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.hero-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 992px) {
  .hero-col--left, .hero-col--right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 992px) {
  .hero-col--middle {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.news-table {
  background: var(--color-bg-surface);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.news-table__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--color-primary);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.news-table__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.news-table__item:last-child {
  border-bottom: none;
}
.news-table__item:hover {
  background: var(--color-bg-body);
}
.news-table__item:hover .news-table__headline {
  color: var(--color-primary);
}
.news-table__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-table__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.news-table__headline {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-table__time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.news-table__time i {
  font-size: 0.7rem;
}

.hero-carousel {
  position: relative;
  height: 100%;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide__link {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.hero-slide__link:hover .hero-slide__image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.hero-slide__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.hero-slide__content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 2rem;
  z-index: 2;
}
.hero-slide__category {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.hero-slide__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}
@media (min-width: 1200px) {
  .hero-slide__title {
    font-size: 1.75rem;
  }
}
.hero-slide__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-slide__date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-carousel__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 10;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-carousel__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hero-carousel__btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.hero-carousel__btn i {
  font-size: 1rem;
}

.hero-carousel__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0;
}
.hero-carousel__dot.is-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}
.hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.opinion-section {
  background: var(--color-bg-surface);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.opinion-section__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  margin: 0;
  background: #c9a227;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.opinion-section__title i {
  font-size: 1.1rem;
}
.opinion-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

.opinion-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.opinion-card__link:hover .opinion-card__image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.opinion-card__link:hover .opinion-card__title {
  color: var(--color-primary);
}
.opinion-card__image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.opinion-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.opinion-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.opinion-card__content {
  padding: 0 0.25rem;
}
.opinion-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.opinion-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.opinion-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.opinion-card__author i {
  color: var(--color-text-muted);
}

.hero-masonry {
  padding: 2rem 0;
  background: var(--color-bg-body);
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  min-height: 500px;
}
@media (max-width: 992px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .masonry-grid {
    gap: 1rem;
  }
}

.masonry-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .masonry-small-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

.masonry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg-body);
}
.masonry-card__link {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.masonry-card__link:hover .masonry-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.masonry-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.masonry-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.masonry-card__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(40%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 100%);
}
.masonry-card__overlay--light {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.masonry-card__content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 2;
}
.masonry-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a227;
  margin-bottom: 0.75rem;
}
.masonry-card--large .masonry-card__category {
  background: var(--color-primary);
  color: #fff;
  padding: 0.35rem 0.875rem;
  border-radius: 4px;
}
.masonry-card__title {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.masonry-card--large .masonry-card__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .masonry-card--large .masonry-card__title {
    font-size: 1.4rem;
  }
}
.masonry-card--medium .masonry-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.masonry-card--small .masonry-card__title {
  font-size: 0.95rem;
}
.masonry-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.masonry-card--large .masonry-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.masonry-card--medium .masonry-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.85rem;
}
.masonry-card--small .masonry-card__excerpt {
  display: none;
}
.masonry-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.masonry-card__author {
  font-weight: 500;
}
.masonry-card__date::before {
  content: "•";
  margin-left: 0.5rem;
}

.masonry-card--large {
  height: 100%;
  min-height: 500px;
}
@media (max-width: 992px) {
  .masonry-card--large {
    min-height: 400px;
  }
}
.masonry-card--large .masonry-card__content {
  padding: 2.5rem;
}

.masonry-card--medium {
  min-height: 240px;
}

.masonry-card--small {
  min-height: 200px;
}
.masonry-card--small .masonry-card__content {
  padding: 1.25rem;
}

.featured-post-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: var(--color-bg-surface, #ffffff);
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border-color, #f1f5f9);
}
:root.dark .featured-post-card {
  background-color: rgba(15, 23, 42, 0.8901960784);
  border-color: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.featured-post-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
:root.dark .featured-post-card:hover {
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}
.featured-post-card:hover .featured-post-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.featured-post-card:hover .featured-post-title {
  color: var(--color-primary, #e53e3e);
}
.featured-post-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-post-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.featured-post-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.featured-post-card__category {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(229, 62, 62, 0.1);
  color: var(--color-primary, #e53e3e);
}
:root.dark .featured-post-card__category {
  background-color: rgba(229, 62, 62, 0.15);
}
.featured-post-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted, #64748b);
  margin-bottom: 0.75rem;
}
:root.dark .featured-post-card__meta {
  color: #94a3b8;
}
.featured-post-card__meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.featured-post-card__meta i {
  font-size: 0.8rem;
  opacity: 0.8;
}
.featured-post-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-text-main, #0f172a);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
:root.dark .featured-post-card__title {
  color: #f8fafc;
}
.featured-post-card__title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-block-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments-area .comment-list > .comment-item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.comments-area .comment-list > .comment-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.comments-area .comment-list .children {
  list-style: none;
  padding: 0;
  margin: 1rem 1.5rem 0 0;
  border-right: 2px solid var(--color-primary);
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .comments-area .comment-list .children {
    margin-right: 2.5rem;
  }
}
.comments-area .comment-list .children .comment-item {
  padding: 1rem 1rem 1rem 0;
  margin-bottom: 0;
  border-bottom: none;
}
.comments-area .comment-list .children .comment-item:last-child {
  padding-bottom: 0;
}
.comments-area .comment-list .children .children {
  margin-right: 1rem;
  border-color: rgba(var(--color-primary-rgb, 230, 55, 70), 0.3);
}
@media (min-width: 768px) {
  .comments-area .comment-list .children .children {
    margin-right: 1.5rem;
  }
}
.comments-area .comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .comments-area .comment-body {
    gap: 1rem;
  }
}
.comments-area .comment-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.comments-area .comment-avatar img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--color-border);
  background: var(--color-bg-surface);
}
@media (min-width: 768px) {
  .comments-area .comment-avatar img {
    width: 3rem;
    height: 3rem;
  }
}
.comments-area .comment-content-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
.comments-area .comment-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.comments-area .comment-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-main);
}
.comments-area .comment-author-name a {
  color: inherit;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.comments-area .comment-author-name a:hover {
  color: var(--color-primary);
}
.comments-area .comment-author-badge {
  font-size: 0.625rem;
  font-weight: 700;
  background: rgba(var(--color-primary-rgb, 230, 55, 70), 0.1);
  color: var(--color-primary);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.comments-area .comment-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.comments-area .comment-date i {
  font-size: 0.625rem;
}
.comments-area .comment-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}
.comments-area .comment-text p {
  margin-bottom: 0.5rem;
}
.comments-area .comment-text p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-awaiting {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: rgba(var(--color-primary-rgb, 230, 55, 70), 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
.comments-area .comment-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.comments-area .comment-reply-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  cursor: pointer;
}
.comments-area .comment-reply-link:hover {
  color: var(--color-primary);
}
.comments-area .comment-reply-link i {
  font-size: 0.875rem;
}
.comments-area .comment-form-wrapper {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .comments-area .comment-form-wrapper {
    padding: 2rem;
  }
}
.comments-area .comment-form .comment-form-field {
  margin-bottom: 1.25rem;
}
.comments-area .comment-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}
.comments-area .comment-form input[type=text],
.comments-area .comment-form input[type=email],
.comments-area .comment-form input[type=url],
.comments-area .comment-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-main);
  outline: none;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  font-family: inherit;
}
.comments-area .comment-form input[type=text]:focus,
.comments-area .comment-form input[type=email]:focus,
.comments-area .comment-form input[type=url]:focus,
.comments-area .comment-form textarea:focus {
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 230, 55, 70), 0.1);
          box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 230, 55, 70), 0.1);
}
.comments-area .comment-form input[type=text]::-webkit-input-placeholder, .comments-area .comment-form input[type=email]::-webkit-input-placeholder, .comments-area .comment-form input[type=url]::-webkit-input-placeholder, .comments-area .comment-form textarea::-webkit-input-placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.comments-area .comment-form input[type=text]::-moz-placeholder, .comments-area .comment-form input[type=email]::-moz-placeholder, .comments-area .comment-form input[type=url]::-moz-placeholder, .comments-area .comment-form textarea::-moz-placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.comments-area .comment-form input[type=text]:-ms-input-placeholder, .comments-area .comment-form input[type=email]:-ms-input-placeholder, .comments-area .comment-form input[type=url]:-ms-input-placeholder, .comments-area .comment-form textarea:-ms-input-placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.comments-area .comment-form input[type=text]::-ms-input-placeholder, .comments-area .comment-form input[type=email]::-ms-input-placeholder, .comments-area .comment-form input[type=url]::-ms-input-placeholder, .comments-area .comment-form textarea::-ms-input-placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.comments-area .comment-form input[type=text]::placeholder,
.comments-area .comment-form input[type=email]::placeholder,
.comments-area .comment-form input[type=url]::placeholder,
.comments-area .comment-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.comments-area .comment-form textarea {
  resize: vertical;
  min-height: 120px;
}
.comments-area .comment-form .input-with-icon {
  position: relative;
}
.comments-area .comment-form .input-with-icon i {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  pointer-events: none;
}
.comments-area .comment-form .input-with-icon input {
  padding-right: 2.25rem;
}
.comments-area .comment-form .form-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .comments-area .comment-form .form-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.comments-area .comment-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.top-header {
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.top-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .top-header__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
.top-header__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.top-header__date i {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .top-header__date {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
  }
}
.top-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .top-header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.top-header__logo .logo-text {
  font-family: "Noto Kufi Arabic", "Tajawal", "Cairo", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -1px;
  position: relative;
  line-height: 1;
}
.top-header__logo .logo-text::first-letter {
  color: #c9a227;
}
.top-header__logo .logo-text:hover {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .top-header__logo .logo-text {
    font-size: 2rem;
  }
}
.top-header__logo .logo-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.top-header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .top-header__social {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 50%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: inherit;
}
.social-link i {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.social-link:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.social-link:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.social-link:hover i {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.social-link--facebook:hover::before {
  background: #1877f2;
}
.social-link--x:hover::before {
  background: #000000;
}
.social-link--youtube:hover::before {
  background: #ff0000;
}
.social-link--instagram:hover::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.main-header {
  background: var(--color-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.main-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 56px;
}
@media (max-width: 992px) {
  .main-header__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
  }
}
.main-header__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  max-width: 70%;
}
@media (max-width: 992px) {
  .main-header__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.main-header__nav .mobile-menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-header__nav .mobile-menu-toggle i {
  font-size: 1.25rem;
}
.main-header__nav .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.main-header__nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .main-header__nav .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    padding: 1rem 0;
  }
}
.main-header__nav .nav-menu > li {
  position: relative;
}
.main-header__nav .nav-menu > li > a {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.main-header__nav .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-header__nav .nav-menu > li > a:hover, .main-header__nav .nav-menu > li > a.active {
  color: #ffffff;
}
.main-header__nav .nav-menu > li > a:hover::after, .main-header__nav .nav-menu > li > a.active::after {
  left: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 992px) {
  .main-header__nav .nav-menu > li > a {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-header__nav .nav-menu > li > a::after {
    display: none;
  }
}
.main-header__search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .main-header__search {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 0;
  }
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-form:focus-within {
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
          box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}
.search-form .search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  outline: none;
}
.search-form .search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .search-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .search-input::-webkit-search-decoration, .search-form .search-input::-webkit-search-cancel-button {
  display: none;
}
.search-form .search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-form .search-button:hover {
  background: var(--color-primary-hover);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.search-form .search-button i {
  font-size: 0.875rem;
}

.header-spacer {
  height: 0;
}
@media (max-width: 992px) {
  .header-spacer {
    height: 0;
  }
}

.menu-item a,
.fallback-menu-item a {
  color: var(--color-text-main);
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  text-decoration: none;
  padding: 0 0.25rem;
}
.menu-item a:hover,
.fallback-menu-item a:hover {
  color: var(--color-primary);
}
.menu-item.current-menu-item > a,
.fallback-menu-item.current-menu-item > a {
  color: var(--color-primary);
}

.top-footer {
  background: var(--color-primary);
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
}
.top-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .top-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .top-footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer-col__title {
  font-family: "Noto Kufi Arabic", "Tajawal", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.footer-col__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}
.footer-col__text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.footer-col--newsletter .footer-col__title::after {
  width: 60px;
  background: #c9a227;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 0.5rem;
}
.footer-menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  position: relative;
}
.footer-menu a::before {
  content: "\f12f";
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
  opacity: 0;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.footer-menu a:hover {
  color: #ffffff;
  padding-right: 0.5rem;
}
.footer-menu a:hover::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.newsletter-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.newsletter-form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  outline: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.newsletter-form__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
}
.newsletter-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.newsletter-form__button:hover {
  background: var(--color-primary-hover);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.newsletter-form__button i {
  font-size: 1rem;
}
.newsletter-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.newsletter-form__checkbox input[type=checkbox] {
  width: 14px;
  height: 14px;
  accent-color: var(--color-primary);
}
.newsletter-form__checkbox a {
  color: #c9a227;
  text-decoration: underline;
}
.newsletter-form__checkbox a:hover {
  color: rgb(219.4125, 183.825, 71.5875);
}

.footer-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.footer-social__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.footer-social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-social__link:hover {
  background: var(--color-primary);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.main-footer {
  background: var(--color-primary-hover);
  padding: 1.5rem 0;
  position: relative;
}
.main-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.copyright__text {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.copyright__text strong {
  color: #c9a227;
  font-weight: 700;
}
.copyright__sub {
  font-size: 0.75rem;
  margin: 0;
}
.copyright__sub a {
  color: rgba(255, 255, 255, 0.8);
}
.copyright__sub a:hover {
  color: var(--color-primary);
}

.back-to-top {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .back-to-top {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 1rem;
  }
}
.back-to-top:hover {
  background: var(--color-primary);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
  .back-to-top:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.back-to-top i {
  font-size: 1.125rem;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Kufi Arabic", "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-main);
  background: var(--color-bg-body);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.animate-marquee {
  display: inline-block;
  -webkit-animation: marquee 80s linear infinite;
          animation: marquee 80s linear infinite;
}
.animate-marquee:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

#mobile-menu-drawer {
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
#mobile-menu-drawer::-webkit-scrollbar {
  width: 4px;
}
#mobile-menu-drawer::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 10px;
}

.drawer-transition {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}