/* ==============================
   Fonts
============================== */
@font-face {
  font-family: 'Kaisei Opti';
  src: url('../fonts/KaiseiOpti-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kaisei Opti';
  src: url('../fonts/KaiseiOpti-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kaisei Opti';
  src: url('../fonts/KaiseiOpti-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
body {
  font-family: 'Kaisei Opti';
}

/* ==============================
   Navbar
============================== */
.gr-navbar {
  background: #0b0b0b;
  padding: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.gr-navbar__container {
  min-height: 80px;
}

.gr-navbar__brand {
  padding: 0;
  margin: 0;
  /* display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  width: 90px;
  background: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.08); */
}

.gr-navbar__brand img {
  /* width: 52px;
  height: 52px; */
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.gr-navbar__collapse {
  min-height: 80px;
  align-items: center;
}

.gr-navbar__nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

.gr-navbar__nav .nav-link.active,
.gr-navbar__nav .nav-link:hover {
  color: #ffffff;
}

.gr-navbar .dropdown-menu {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #E1E1E1;
}

.gr-navbar .dropdown-menu .dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}

.gr-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #3a5a331a;
  color: #3A5A33;
}

.gr-navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gr-navbar__weather {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gr-navbar__weather::before {
  content: url(../img/weather_icon.svg);
}

.gr-btn {
  height: 34px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.gr-btn--ghost {
  background: transparent;
  color: #C1C1C1;
  border: 1px solid #C1C1C1;
}

.gr-btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.gr-btn--donate {
  background: #3A5A33;
  color: #ffffff;
  border: 1px solid #3A5A33;
}

.gr-btn--donate:hover {
  background: #356a31;
  color: #ffffff;
}

.gr-navbar__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FDFDFD;
  font-size: 17px;
  padding-inline-start: 20px;
  border-inline-start: 1px solid #C1C1C1;
}

/* ==============================
   Gaza Roots Banner
============================== */
.gr-banner {
  background-color: #f5f5f5;
  padding: 0;
  overflow: hidden;
  height: 50vh;
}

.gr-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   Hero + Blog Cards
============================== */
.hero_section {
  padding: 30px 0;
}

.gr-blog {
  margin-bottom: 20px;
}

.gr-blog__img {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.gr-blog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-blog__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 2;
}

.gr-blog__text .h2 {
  align-self: flex-start;
  background-color: #E1E1E1;
  height: 25px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin: 0;
}

.gr-blog__text .h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 0;
  display: block;
}

.gr-blog__text p {
  font-size: 14px;
  font-weight: 400;
  color: #444444;
}

/* Main blog (overlay) */
.gr-blog__main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0px;
}

.gr-blog__main .gr-blog__opacity {
  position: relative;
  display: block;
}

.gr-blog__main .gr-blog__opacity:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(
    to bottom,
    rgba(68, 68, 68, 0) 0%,
    rgba(37, 37, 37, 0.5) 50%,
    rgba(37, 37, 37, 1) 100%
  );
  pointer-events: none;
}

.gr-blog__main .gr-blog__text {
  position: absolute;
  inset: 0;
  top: auto;
  padding: 30px;
}

.gr-blog__main .gr-blog__text .h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/* Secondary blog */
.gr-blog__secondary .gr-blog__img {
  margin-bottom: 20px;
}

/* Inline blog */
.gr-blog__inline {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gr-blog__inline .gr-blog__img {
  width: 150px;
  height: 120px;
  overflow: hidden;
}

/* Inline large */
.gr-blog__inline--lg .gr-blog__img {
  width: 200px;
  height: 200px;
}

.gr-blog__inline--lg .gr-blog__text .h3 {
  font-size: 18px;
}

/* Slide blog */
.gr-blog__slide .gr-blog__img {
  height: 300px;
  margin-bottom: 20px;
}

.gr-blog__slide .gr-blog__text .h3 {
  font-size: 18px;
}

/* ==============================
   News Ticker
============================== */
.news-ticker {
  background: #3A5A33;
  height: 63px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-marquee {
  flex: 1;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.news-marquee a {
  color: #FEFEFE;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.news-marquee span {
  color: #FEFEFE;
  margin: 0 12px;
}

/* ==============================
   Categories + Urgent + Title
============================== */
.categories_section {
  padding: 50px 0;
}

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

.gr-category__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.gr-category__box {
  border-radius: 6px;
  overflow: hidden;
  height: 242px;
}

.gr-category__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.gr-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.gr-title a {
  font-size: 24px;
  font-weight: bold;
  color: #3A5A33;
  text-decoration: none;
}

.gr-title a:hover {
  text-decoration: underline;
}

.categories_section .row {
  row-gap: 24px;
}

/* Urgent */
.gr-urgent {
  padding-right: 20px;
}

.gr-urgent__bg {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 6px;
}

.gr-urgent__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gr-urgent__item {
  display: grid;
  grid-template-columns: 40px 2px 1fr;
  align-items: center;
  column-gap: 16px;
}

.gr-urgent__index {
  font-size: 26px;
  font-weight: 700;
  color: #E1E1E1;
}

.gr-urgent__line {
  width: 2px;
  background: #E1E1E1;
  height: 100%;
  min-height: 72px;
}

.gr-urgent__text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.gr-urgent__item:hover .gr-urgent__index {
  color: hsl(115deg 100% 15% / 50%);
}

.gr-urgent__item:hover .gr-urgent__line {
  background: #3A5A33;
}

.gr-urgent__item:hover .gr-urgent__text {
  color: #3A5A33;
  text-decoration: underline;
}

/* Selections */
.gr-selections {
  margin-top: 70px;
}

.categories_section .col-lg-4 .gr-blog__inline {
  margin-bottom: 14px;
  gap: 12px;
  align-items: center;
}

.categories_section .col-lg-4 .gr-blog__inline:hover .gr-blog__text .h3 {
  color: #3A5A33;
  text-decoration: underline;
}

/* ==============================
   Stats
============================== */
.gr-stats {
  display: flex;
  justify-content: space-between;
  border: 1px solid #eee;
  padding: 50px 30px;
  border-radius: 6px;
  margin-top: 60px;
}

.water .gr-stats {
  margin: 30px 0;
  background-color: #FAFAFA;
  border: 0;
}

.gr-stats__item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gr-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #3A5A33;
}

.water .gr-stats__item:not(:last-child)::after {
  background: #e1e1e1;
}

.gr-stats__num {
  font-size: 32px;
  font-weight: 700;
  color: #3A5A33;
}

.gr-stats__label {
  font-size: 14px;
  font-weight: bold;
  color: #444;
}

/* ==============================
   Sections
============================== */
.single-category_section {
  background-color: #FAFAFA;
  padding: 50px 0;
}

.single-category_section .col-lg-4 .gr-title {
  margin-bottom: 20px;
}

.slides_section {
  padding: 50px 0;
}

/* ==============================
   Subscribe
============================== */
.gr-subscribe {
  padding: 50px 0;
}

.gr-subscribe__box {
  background: #3A5A33;
  border-radius: 6px;
  padding: 50px 0px;
  text-align: center;
  color: #fff;
}

.gr-subscribe__title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.gr-subscribe__desc {
  font-size: 16px;
  margin: auto;
  margin-bottom: 50px;
  max-width: 609px;
}

.gr-subscribe__form {
  max-width: 609px;
  margin: 0 auto;
  position: relative;
  direction: ltr;
}

.gr-subscribe__input {
  width: 100%;
  height: 82px;
  padding-inline-start: 40px;
  padding-inline-end: 80px;
  border-radius: 40px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 17px;
}

.gr-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.gr-subscribe__input:focus {
  outline: none;
  border-color: #fff;
}

.gr-subscribe__btn {
  position: absolute;
  top: 50%;
  inset-inline-end: 10px;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gr-subscribe__btn:before {
  content: url(../img/subs-arrow.svg);
  width: 32px;
  height: 32px;
}

.gr-subscribe__btn:hover {
  background: #f1f1f1;
}

/* Load more */
.load-more {
  font-size: 14px;
  font-weight: 400;
  color: #3A5A33;
  height: 54px;
  border-radius: 6px;
  border: 1px solid #C1C1C1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==============================
   Single Post
============================== */
.gr-post__title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.water .gr-post__title {
  margin-bottom: 30px;
}

.gr-post__cover {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0px;
  height: 450px;
}

.water .gr-post__cover {
  margin-bottom: 30px;
}

.gr-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gr-post__caption {
  font-size: 14px;
  color: #444;
  margin-bottom: 0;
  background-color: #FAFAFA;
  padding: 20px;
  font-style: italic;
}

.gr-post__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 30px 0;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

.gr-post__meta-item {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.gr-post__meta-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.gr-post__meta-icon--date {
  background: url("../img/icons/calendar.svg") center/contain no-repeat;
}

.gr-post__meta-icon--author {
  background: url("../img/icons/user.svg") center/contain no-repeat;
}

.gr-post__content p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.gr-post__quote {
  background: #F7F7F5;
  padding: 30px;
  margin: 18px 0;
  font-size: 16px;
  color: #000;
  border-radius: 6px;
  font-weight: 500;
  font-style: italic;
  display: flex;
  flex-direction: column;
}

.gr-post__quote::before {
  content: url(../img/icons/quote.svg);
}

.gr-post__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #999999;
  font-weight: 400;
}

.gr-post__quote cite span {
  color: #3A5A33;
}

.gr-post__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #E1E1E1;
  margin-top: 30px;
}

.gr-post__share-label {
  font-size: 14px;
  color: #454545;
}

.gr-post__share-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gr-post__share-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 50%;
  transition: .2s;
}

.gr-post__share-btn:hover {
  opacity: 1;
}

.gr-post__share-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gr-post-highlight {
  margin-top: 30px;
  background: #3a5a331a;
  border-radius: 6px;
  padding: 30px;
  border: 1px solid #E1E1E1;
}

.gr-post-highlight__title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 17px;
}

.gr-post-highlight__text {
  font-size: 16px;
  color: #444;
  font-weight: 500;
  margin-bottom: 17px;
}

.gr-post-highlight__btn {
  height: 34px;
  background: #3A5A33;
  color: #fff;
  border: 1px solid #3A5A33;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gr-post-highlight__btn:hover {
  background: #356a31;
  color: #fff;
}

/* ==============================
   Author Box + Authors Page
============================== */
.gr-author-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 30px;
  background: #FAFAFA;
  border-radius: 6px;
  margin-bottom: 30px;
}

.gr-author-box__avatar {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background: #064d001a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gr-author-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-author-box__avatar span {
  font-size: 24px;
  font-weight: bold;
  color: #3A5A33;
}

.gr-author-box__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gr-author-box__name {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.gr-author-box__meta {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.gr-authors-banner {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #FAFAFA;
}

.gr-authors-banner__title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.gr-authors-banner__meta {
  margin: 0;
  font-size: 16px;
  color: #444;
  font-weight: bold;
}

.authors_section {
  padding: 50px 0;
}

/* Search */
.gr-authors-search {
  position: relative;
  margin-bottom: 40px;
}

.gr-authors-search__input {
  width: 100%;
  height: 72px;
  border-radius: 40px;
  border: 1px solid #E1E1E1;
  padding-inline-start: 70px;
  padding-inline-end: 80px;
  font-size: 16px;
  color: #000;
  background: #fff;
}

.gr-authors-search__input::placeholder {
  color: #999;
}

.gr-authors-search__input:focus {
  outline: none;
  border-color: #3A5A33;
}

.gr-authors-search::before {
  content: "";
  position: absolute;
  inset-inline-start: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/icons/search-icon.svg") center/contain no-repeat;
}

.gr-authors-search__btn {
  position: absolute;
  inset-inline-end: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #3A5A33;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gr-authors-search__btn img {
  width: 32px;
  height: 32px;
}

/* Authors grid + cards */
.gr-authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gr-author-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.gr-author-card__box {
  background: #FAFAFA;
  border-radius: 6px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gr-author-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #064d001a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gr-author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-author-card__avatar span {
  font-size: 28px;
  font-weight: 700;
  color: #3A5A33;
}

.gr-author-card__content {
  padding: 20px 10px;
}

.gr-author-card__name {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.gr-author-card__meta {
  font-size: 14px;
  color: #444;
  margin: 0;
  font-weight: bold;
}

/* ==============================
   Footer
============================== */
.gr-footer {
  background: #F9F9F7;
  padding: 50px 0;
  border-top: 1px solid #eee;
}

.gr-footer__box {
  text-align: center;
}

.gr-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
}

.gr-footer__logo img {
  width: 100%;
}

.gr-footer__title {
  font-size: 24px;
  font-weight: 700;
  color: #454545;
  margin-bottom: 30px;
}

.gr-footer__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 0;
}

.gr-footer__nav a {
  font-size: 16px;
  font-weight: 400;
  color: #454545;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.gr-footer__nav a:hover {
  color: #3A5A33;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.gr-footer__social-title {
  font-size: 12px;
  font-weight: 400;
  color: #454545;
  margin-bottom: 10px;
  border-top: 1px solid #E1E1E1;
  display: inline-block;
  padding: 0 30px;
  padding-top: 30px;
}

.gr-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gr-footer__social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gr-footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.gr-footer__social-link img:nth-child(2) {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.gr-footer__social-link:hover img:first-child,
.gr-footer__social-link.active img:first-child {
  opacity: 0;
}

.gr-footer__social-link:hover img:nth-child(2),
.gr-footer__social-link.active img:nth-child(2) {
  opacity: 1;
}

.gr-footer__copy {
  font-size: 15px;
  color: #454545;
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid #E1E1E1;
}

/* ==============================
   Donation Box
============================== */
.gr-donation-box {
  background: #FAFAFA;
  padding: 20px;
  border-radius: 6px;
}

.gr-donation-header {
  margin-bottom: 20px;
}

.gr-donation-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gr-donation-title:before {
  content: url("../img/icons/water.svg");
}

.gr-donation-desc {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.gr-donation-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.gr-donation-option {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.gr-donation-option input {
  display: none;
}

.gr-donation-option span {
  display: inline-flex;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #E1E1E1;
  transition: 0.2s;
}

.gr-donation-option input:checked + span {
  background: #FFFFFF;
  color: #3A5A33;
  font-weight: bold;
}

.gr-donation-custom {
  display: none;
  margin-bottom: 25px;
}

.gr-donation-custom input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Donation type (custom radio) */
.gr-donation-type {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.gr-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.gr-radio input {
  display: none;
}

.gr-radio__circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E1E1E1;
  position: relative;
  transition: all 0.2s ease;
  display: block;
}

.gr-radio__circle::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #3A5A33;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gr-radio input:checked + .gr-radio__circle {
  background: #EAF0E8;
}

.gr-radio input:checked + .gr-radio__circle::after {
  opacity: 1;
}

.gr-radio__label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.gr-radio:hover .gr-radio__circle {
  background: #dcdcdc;
}

.gr-donation-type p {
  font-weight: bold;
}

.gr-donation-btn {
  width: 100%;
  height: 47px;
  background: #3A5A33;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.gr-donation-btn:hover {
  background: #2f4a2a;
}

/* ==============================
   Donation Modal
============================== */
.modal-dialog {
  max-width: 900px;
}

.gr-donation-modal {
  background-color: #444444b3;
}

.gr-donation-modal__content {
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}

.gr-donation-modal__header {
  border: 0;
  padding: 0;
  position: relative;
  background: transparent;
  justify-content: end;
  display: flex;
}

.gr-donation-modal__close {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 12px 0 0;
  padding: 0;
}

.gr-donation-modal__close::before {
  content: url(../img/icons/modal_close.svg);
  display: block;
}

.gr-donation-modal__body {
  padding: 0;
}

.gr-donation-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 420px;
}

.gr-donation-modal__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-donation-modal__right {
  background: #fff;
}

/* ==============================
   Assist Modal (Right Side)
============================== */
.gr-assist-box {
  width: 100%;
  padding: 30px 20px;
}

.gr-assist-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.gr-assist-desc {
  margin-bottom: 30px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.gr-assist-desc span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.gr-assist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gr-assist-field input,
.gr-assist-field select,
.gr-assist-field textarea {
  width: 100%;
  border: 1px solid #E1E1E1;
  background: #fff;
  border-radius: 4px;
  height: 54px;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  color: #000;
}

.gr-assist-field textarea {
  resize: none;
  padding-top: 16px;
  height: 108px;
}

.gr-assist-field input::placeholder,
.gr-assist-field textarea::placeholder {
  color: #bdbdbd;
}

.gr-assist-field input:focus,
.gr-assist-field select:focus,
.gr-assist-field textarea:focus {
  border-color: #d9d9d9;
}

.gr-assist-field--select {
  position: relative;
}

.gr-assist-field--select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  color: #bdbdbd;
}

.gr-assist-field--select select:valid {
  color: #000;
}

.gr-assist-select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.gr-assist-select-icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  transform: rotate(45deg);
  margin: 2px auto 0;
}

.gr-assist-btn {
  margin-top: 10px;
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 4px;
  background: #3A5A33;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.gr-assist-btn:hover {
  background: #356a31;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 991px) {
  .gr-navbar__actions {
    gap: 10px;
  }

  .gr-navbar__meta {
    display: none;
  }

  .hero_section .row {
    row-gap: 24px;
  }

  .gr-blog__main .gr-blog__text {
    padding: 20px;
  }

  .gr-blog__main .gr-blog__text .h3 {
    font-size: 20px;
  }

  .gr-category__grid {
    gap: 20px;
  }

  .gr-urgent {
    padding-right: 0;
  }

  .gr-stats {
    padding: 30px 20px;
  }

  .gr-stats__num {
    font-size: 26px;
  }

  .gr-subscribe__box {
    padding: 40px 20px;
  }

  .gr-subscribe__input {
    height: 70px;
  }

  .gr-subscribe__btn {
    width: 54px;
    height: 54px;
  }

  .gr-post__cover img {
    height: 300px;
  }

  .gr-authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gr-donation-modal__left {
    display: none;
  }

  .gr-donation-modal__grid {
    display: block;
  }
}

@media (max-width: 767px) {
.categories_section,
    .gr-subscribe{
        padding: 25px 0;
    }

    .gr-blog__text p{
        display: none;
    }

    .gr-donation-amounts{
        grid-template-columns: repeat(3, 1fr);
    }
  .gr-navbar {
    min-height: auto;
  }

  .gr-navbar__brand {
    min-height: 64px;
  }

  .gr-navbar__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .gr-btn {
    width: 100%;
  }

  .gr-blog__main .gr-blog__text {
    padding: 16px;
  }

  .gr-blog__main .gr-blog__text .h3 {
    font-size: 18px;
  }

  .gr-blog__inline {
    gap: 12px;
  }

  .gr-blog__inline .gr-blog__img {
    width: 100px;
    height: 80px;
  }

  .gr-category__grid {
    grid-template-columns: 1fr;
  }

  .gr-category__box {
    height: 200px;
  }

  .gr-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gr-title h2 {
    font-size: 20px;
  }

  .gr-title a {
    font-size: 16px;
  }

  .gr-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 30px 20px;
  }

  .gr-stats__item::after {
    display: none;
  }

  .gr-subscribe__title {
    font-size: 22px;
  }

  .gr-subscribe__desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .gr-subscribe__input {
    height: 60px;
    padding-inline-start: 20px;
    padding-inline-end: 60px;
    font-size: 14px;
  }

  .gr-subscribe__btn {
    width: 46px;
    height: 46px;
  }

  .gr-footer__logo {
    width: 90px;
    height: 90px;
  }

  .gr-footer__nav {
    flex-direction: column;
    gap: 12px;
  }

  .gr-footer__copy {
    font-size: 13px;
  }

  .gr-post__title {
    font-size: 22px;
  }

  .gr-post__cover img {
    height: 240px;
  }

  .gr-post__share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gr-author-box {
    padding: 18px 16px;
    gap: 16px;
  }

  .gr-author-box__avatar {
    width: 72px;
    height: 72px;
  }

  .gr-author-box__name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gr-blog__inline .gr-blog__img {
    width: 80px;
    height: 70px;
  }

  .gr-blog__text .h3 {
    font-size: 14px;
  }

  .news-marquee a {
    font-size: 14px;
  }

  .gr-authors-grid {
    grid-template-columns: 1fr;
  }

  .gr-author-card__avatar {
    width: 96px;
    height: 96px;
  }
}
