.expert_container {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.expert_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.gambling_expert2 {
  width: 250px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.responsive_img {
  width: 100%;
  margin-bottom: 20px;
}

.toc_wrapper {
  margin: 20px 0;
}

.toc_toggle {
  background-color: #1a2130;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.toc.collapsed {
  display: none;
}

.toc ul {
  list-style: none;
  padding: 10px 0px 0px 0px;
}

.toc ul li {
  margin-bottom: 8px;
}

.toc a {
  text-decoration: none;
  color: #0077cc;
}

.toc a:hover {
  text-decoration: underline;
}

.image_text_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.image_text_section img {
  width: 400px;
}

.image_text_section div {
  width: 50%;
}

/* SLOT LISTING */
.slot_listing_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0px;
  row-gap: 30px;
}

.slot_item {
  width: calc(100% / 5 - 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
}

.slot_image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.slot_links {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.slot_links a {
  color: #0077cc;
  font-family: "FIRAGO-SEMIBOLD";
  text-decoration: none;
}

.slot_button {
  background-color: #1a2130;
  color: white !important;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

/* BLOG CSS */
.blog_container {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.blog_img img {
  width: 100%;
  max-height: 250px;
  min-height: 250px;
  object-fit: cover;
}

.blog_item {
  width: calc(100% / 3 - 10px);
  border-radius: 10px;
  overflow: hidden;
}

.blog_body {
  height: 250px;
  background-color: whitesmoke;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  padding: 5px 15px 20px 15px;
}

.blog_h2 {
  font-size: 22px !important;
  font-family: "FIRAGO-MEDIUM";
  color: #222222;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  border-left: 0px !important;
  padding-left: 0px !important;
}

.blog_h2 a {
  text-decoration: none !important;
}

.blog_author_date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.8;
}

.blog_content_img {
  text-align: center;
}

.blog_content_img img {
  width: 450px;
  border-radius: 10px;
}

@media screen and (max-width: 900px) {
  .image_text_section {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }

  .image_text_section img {
    width: 100%;
    margin-bottom: 25px;
  }

  .image_text_section div {
    width: 100%;
  }

  .slot_item {
    width: 100%;
  }

  .blog_item {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width: 600px) {
  .gambling_expert2 {
    width: 100%;
  }
  .blog_item {
    width: 100%;
  }
}
