 
.articles-container {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr; /* Main content takes 2/3 of the space, side articles take 1/3 */
  gap: 20px;
}

.main-featured {
  grid-column: span 1; /* Ensures the main-featured only takes one column */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.main-featured {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* height: fit-content; */
}

.main-featured .image-container {
  width: 100%;
  height: 100%;

  border-radius: 8px !important;
}
.main-featured img {
  width: 100%;
  height: 100%;
  border-radius: 8px !important;
}

.main-featured .text-content {
  border-radius: 16px !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white; 
  padding: 15px;
  padding-top: 60px;
  background-color: rgba(0, 0, 0, 0);
  /* background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)); */
  background-image: linear-gradient(rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.8));
  
}

.main-featured h2 {
  font-size: 2em;
  margin: 0;
}

.main-featured p {
  margin-top: 10px;
  font-size: 1em;
}

.side-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}

.article {
  display: flex;
  gap: 10px;
}

.article img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.article .text-content {
  flex-grow: 1;
}

.article h3 {
  font-size: 1em;
}

.article p {
  font-size: 0.8em;
  color: gray;
}

.lower-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* Two-column layout for lower articles */
  grid-gap: 20px;
  grid-column: span 2; /* Lower row articles take full width */
}

@media (max-width: 767px) {
  .articles-container {
    gap: 0px;
  }
  .articles-container,
  .lower-row,
  .side-articles {
    grid-template-columns: 1fr; /* Single column layout for smaller screens */
  }
  /* .side-articles {
    padding: 10px;
  } */
  .main-featured .text-content { 
    height: auto;
    bottom: 0;
    position: relative;
    background: none;
    color: #000;
    padding: 20px 0px;
  }
  .articles-container {
    display: block;
    margin-bottom: 30px;
  }

  .articles-container .main-featured {
    margin-bottom: 30px;
  }
  .main-featured h2 {
    font-size: 22px;
    margin: 0;
  }
  .main-featured img {
    height: 100%;
    object-fit: cover; /* Ensure the image fits well in smaller screens */
  }
  
}
/* Start News Details */
.news-details-content-upper {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: space-between; /* Space between the grid items */
  gap: 20px;
}

.news-details-content-upper .upper-image {
  width: 100%;
}
.news-details-content-upper .upper-image img {
  width: 100%;
}
.news-details-content-upper p,
.news-details-content-lower p {
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .news-details-content-upper {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .news-details-content-upper .upper-image {
    order: 1;
  }
  .news-details-content-upper p {
    order: 2;
  }
}
/* End News Details */

/* Start Image Gallery and Image Gallery Details */

.gallery-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-list .card { 
  border-radius: 15px;
  border: 1px solid #ffe787;
  transition: 0.5s all ease-in-out;
}
.gallery-list .card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.gallery-list .card .card-body .card-title {
  font-weight: 500;
  text-align: center;
  padding: 5px 5px 10px;
}
.gallery-list .card .card-body .card-text {
  font-size: 14px;
  color: #828282;
}
.gallery-list .btn {
  background-color: #f7f0d4;
  color: #000007;
  margin-top: 10px;
}
.gallery-list .btn:hover {
  border: 2px solid #ffe787;
  background: transparent;
}

@media (max-width: 768px) {
  .gallery-list {
    /* padding: 0px; */
    grid-template-columns: 1fr;
  }
}
.gallery-details-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-details-container .gallery--item {
  /* background-color: aqua; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-details-container .gallery--item .item--image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.5s all ease-in;
}
.gallery-details-container .gallery--item .item--image img {
  width: 100%;
  border-radius: 8px;
  transition: 0.5s all ease-in;
}
.gallery-details-container .gallery--item .item--image:hover img {
  transform: scale(1.1) rotate(5deg);
}
@media (max-width: 768px) {
  .gallery-details-container {
    /* padding: 0px; */
    grid-template-columns: 1fr;
  }
}
/* End Image Gallery and Image Gallery Details */

/* Start Video Gallery and Video Gallery Details */
.video-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.video-list .card { 
  border-radius: 15px;
  border: 1px solid #ffe787;
  transition: 0.5s all ease-in-out;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-list .card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.video-list .card .card-body .card-title {
  font-weight: bold;
  text-align: center; 
  padding: 5px 5px 10px;
}
.video-list .card .card-body .card-text {
  font-size: 14px;
  color: #828282;
}
.video-list .btn {
  background-color: #f7f0d4;
  color: #000007;
  margin-top: 10px;
}
.video-list .btn:hover {
  border: 2px solid #ffe787;
  background: transparent;
}
.image-container {
  position: relative;
}

.card-img-top {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-list .card:hover .play-button {
  color: #ffe787;
}
.play-button {
  font-size: 40px;
  color: white;
  transition: all 0.3s ease-in-out;

  cursor: pointer;
}
@media (max-width: 768px) {
  .video-list {
    /* padding: 0px; */
    grid-template-columns: 1fr;
  }
}
.video-details-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 2px solid #ffe787; 
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* background-color: hsl(48, 100%, 76%); */
}
.video-container:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.video-container a .title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container a .title h5 {
  background-color: #ffe787;
  padding: 10px 20px;
  color: black;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: 0.5s all ease-in-out;
}
.play-video-btn {
  display: flex;
  padding: 10px 20px;
  background-color: #D2A901;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: auto;
}
.media-btn-cont{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.play-video-btn i {
  margin-left: 5px;
  transition: color 0.4s ease;
}

.video-container a .title h5:hover {
  transform: translateY(-2px);
}
.video-container img {
  display: block;
  width: 100%;
  height: auto;
}

/* Overlay Play Button */
.video-container::before {
  content: "\f04b"; /* FontAwesome play icon */
  font-family: FontAwesome;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  opacity: 0.8;
}

.video-container:hover::before {
  opacity: 1;
}

/* End Video Gallery and Video Gallery Details */

/* Start download Page */
.downloads-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
}
.download-card {
  border: 1px solid #0c405f;
  border-radius: 6px;
  padding: 12px 12px;
  /*width: 175px;
  *//*margin: 10px;
  */text-align: left;
  display: inline-block;
  transition: 0.5s all ease-in-out;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1); 
}
.download-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
 
.download-btn{
  display: flex;
  gap: 12px;
}
.download-cnt h3{
  font-size: 16px;
  margin: 0;
  color: #000;
  line-height: inherit;
}
.download-img img{
  width: 30px;
}
/* .download-btn {
  color: #ffffff;
  background: #d2a729;
  border: 1px solid #d2a729;
  border-radius: 12px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  font-size: 18px;
  min-width: 130px;
  height: 44px;
  padding: 6px 16px;
  font-family: "Inter", sans-serif;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.download-btn:hover {
  transform: translateY(-3px);
}
.download-btn span {
  transition: 0.5s all ease-in-out;
  font-weight: 400;
  color: #fff;
}

.download-btn i {
  font-size: 1.2em;
  color: #fff;
} */
@media (max-width: 767px) {
  .download-card {
    width: 100%;
  }
  .downloads-container{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) { 
  .downloads-container{
    grid-template-columns: repeat(1, 1fr);
  }
}
/* End download Page */

/* Start Events Center */
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.event-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  border: 1px solid #d2a729;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image {
  position: relative;
  width: 100%; 
  overflow: hidden;
  transition: all 500ms ease;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  font-size: 16px;
  color: #000;
  min-width: 80px;
}

.event-day-num{
  color: #d2a729;
  font-size: 18px;
  font-weight: 600;
}
.event-date span {
  display: block;
}

.event-content {
  padding: 20px;
}

.event-category {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.event-detail {
  display: flex;
  gap: 10px;
  align-items: center;
}
.event-detail i{
  color: #d2a729;
}
.event-category span {
  background-color: #f1f1f1;
  color: #555;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.event-content h3 { 
  color: #000;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0;
}

.event-content p i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .event-card {
    margin: 0 auto;
  }
}
/* End Events Center */

/* Start Event details */
.event-details-container {
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  /* max-width: 800px; */  
}

.event-title {
  font-size: 26px;
  color: #0A3F60;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
}

.event-image img {
  width: 100%;
  height: auto;
  transition: all 500ms ease;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.event-card:hover .event-image img{
  transform: scale(1.08);
} 

.event-details-container .event-image {
  border-radius: 12px;
}
.event-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 20px;
  padding: 22px 15px;
  flex-wrap: wrap;
  border-radius: 8px;
  background: #EAF2F9;
}

.date-info {
  display: flex;
  gap: 30px;
  width: 100%;
}
.date-icons{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222222;
}
.event-details-container .date {
  display: flex;
  align-items: start; 
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #000;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px #00000012;
  width: 100%;
}

.date strong {
  font-size: 1.1rem;
  color: #d2a729;
}

.venue-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.venue-title {
  font-size: 1rem;
  color: #f13b47;
  font-weight: bold;
}

.venue-info strong {
  font-size: 1.2rem;
  color: #0077c0;
}

.venue-info .time {
  font-size: 0.9rem;
  color: #666;
}


/* Responsive Layout */

@media (max-width: 992px) {
  .event-info {
    flex-direction: column;
    align-items: start;
    text-align: start;
  }
  .venue-info {
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    align-items: start;
    margin-top: 20px;
  }
  .date-info {
    flex-direction: column;
    gap: 15px;
  }  
}

@media (max-width: 480px) {
  .event-title {
    font-size: 1.5rem;
  }

  .date strong {
    font-size: 1rem;
  }

  .venue-info strong {
    font-size: 1rem;
  } 
}


/* End Events Details */


.our-mediakit-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
}

.mediakit-right-wrap {
  background: #fff; 
  width: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease; 
}
.mediakit-right-title li{
  display: block;
  width: 100%;
}
.mediakit-right-wrap ul li a {
  padding: 15px 15px;
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #d2a7297d;
  transition: all 500ms ease;
  width: 100%;
  display: block;
}

.mediakit-right-wrap ul li a:hover {
  background-color: #D2A901;
  border-color: #D2A901;
  transform: scale(1.02);
  box-shadow: 2px 2px 5px #ccc;
  color: #fff;
}

.mediakit-right-title {
  background: #D2A901;
  padding: 16px 14px; 
}

.mediakit-right-title h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
} 

.mediakit-link-sec img {
  width: 25px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-align: left;
  float: left;
  transform: scaleX(-1);
}
 
@media(max-width: 480px){
  .video-details-items{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media(min-width: 480px) and (max-width: 768px) {
  .video-details-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 768px) {
  .our-mediakit-wrapper{
    grid-template-columns: 1fr;
  }
}
@media(min-width: 768px) and (max-width: 1300px) {
  .our-mediakit-wrapper{
    grid-template-columns: 1fr;
  }
}