h2,
h3 {
  margin-block-end: 0rem;
  margin-block-start: 0rem;
}

/* slider css */
.home-slider-next-prev-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #b2b0b0;
  margin-top: 20px;
}

.home-slider-next-prev-button .button-next,
.home-slider-next-prev-button .button-prev {
  display: flex;
  gap: 2px;
  cursor: pointer;
}

.button-next.swiper-button-disabled,
.button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

.home-slider-next-prev-button .button-next SVG,
.home-slider-next-prev-button .button-prev SVG {
  width: 18px;
  color: #b2b0b0;
  fill: #b2b0b0;
}

/* slider css END*/

/* article Video css */
.homepage-magazine-title {
  text-align: center;
}

.article-video {
  aspect-ratio: 16 / 11;
  width: 100%;
  overflow: hidden;
}

.article-video iframe,
.article-video video {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-video-btn {
  margin-top: 10px;
  text-align: center;
}

.article-video-btn a {
  color: #fff;
  background: #9b142b;
  padding: 20px;
  display: block;
  border-radius: 15px;
  font-weight: bold;
  font-size: 40px;
  width: 100%;
}

/* article image css */
.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.article-image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.article-image a.glightbox::after,
.article-content-image a.glightbox::after {
  content: '🔍';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-image a:hover::before,
.article-content-image a:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.article-image a.glightbox:hover::after,
.article-content-image a.glightbox:hover::after {
  opacity: 1;
  transform: scale(1);
}

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

.article-image a:hover img,
.article-content-image a:hover img {
  transform: scale(1.02);
}

/* article content css */
.article-content-con {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 20px;
}

.article-content-title {
  color: #a90a2e !important;
}

.article-content-sub-title {
  font-size: 16px;
  color: #54595f !important;
  font-weight: 400 !important;
}

.article-content {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
}

.article-content-address {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 5px;
  margin-top: 40px;
}

.article-content-address a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  font-size: 12px;
}

.article-content-address a svg {
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
}

.article-content-social {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.article-content-social svg {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  fill: #fff;
  padding: 5px;
}

.article-content-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}

.article-content-video iframe,
.article-content-video video {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content-logo img {
  width: 100%;
  height: 100px !important;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 20px;
}

.article-content-image {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 5px;
}

.article-content-image a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.article-content-image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.article-content-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 1250px) {
  .article-content-address {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .article-content-con {
    grid-template-columns: 1fr;
  }

  .article-content-address {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .article-video-btn a {
    font-size: 24px;
    padding: 15px;
  }
}

@media (max-width: 450px) {
  .article-content-address {
    grid-template-columns: 1fr;
  }
}