/* Post Content Block Styles */

.postContent {
  padding: 0;
}

.postContent__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
}

/* Left Column Styles */
.postContent__left {
  display: flex;
  flex-direction: column;
}

/* Back Button */
.postContent__back {
  margin-bottom: 20px;
}

.postContent__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background-color: transparent;
  border: none;
  color: var(--Orange, #eb5a37);
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.2s ease;
  cursor: pointer;
}

.postContent__back-btn:hover {
  transform: scale(1.05);
}

.postContent__back-icon {
  width: 16px;
  height: 16px;
  color: currentColor;
}

/* Media Section */
.postContent__media {
  margin-bottom: 35px;
}

.postContent__single-image,
.postContent__slider {
  position: relative;
  overflow: hidden;
}

.postContent__image,
.postContent__slide-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

/* Slider Styles */
.postContent__slider-container {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.postContent__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.postContent__slide.active {
  opacity: 1;
}

.postContent__slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.postContent__slider-nav:hover {
  background: rgba(0, 0, 0, 0.9);
}

.postContent__slider-prev {
  left: 15px;
}

.postContent__slider-next {
  right: 15px;
}

.postContent__slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.postContent__slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}

.postContent__slider-dot.active,
.postContent__slider-dot:hover {
  background: white;
}

/* Section Titles */
.postContent__section-title {
  color: var(--Grn, #017668);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

/* Categories */
.postContent__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.postContent__category {
  padding: 0.5rem 0.75rem;
  background: var(--Orange, #eb5a37);
  color: #fff;
  font-family: Asap;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 20px;
}

/* Organization Images */
.postContent__organization-images {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 50px;
}

.postContent__org-image {
  width: 120px;
  height: 60px;
  overflow: hidden;
}

.postContent__org-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content Sections */
.postContent__content-section {
  margin-bottom: 50px;
}

.postContent__section-header {
  color: var(--Grn, #017668);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  margin-bottom: 10px;
}

.postContent__section-text {
  color: #000;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.postContent__section-text p {
  margin-bottom: 1rem;
}

.postContent__section-text p:last-child {
  margin-bottom: 0;
}

/* Read More Categories */
.postContent__read-more-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.postContent__read-more-category-tag {
  padding: 0.5rem 0.75rem;
  background: var(--Orange, #eb5a37);
  color: #fff;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 20px;
}

.postContent__read-more-category-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: var(--Orange, #eb5a37);
  color: #fff;
  font-family: "Asap", sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 20px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.postContent__read-more-category-link:hover {
  background-color: #e6a532;
  text-decoration: none;
  color: white;
  transform: translateY(-1px);
}

/* Right Column Styles */
.postContent__right {
  display: flex;
  flex-direction: column;
}

.postContent__header {
  color: var(--Sort, #000001);
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 30px;
}

/* Info Items */
.postContent__info-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 25px;
}

.postContent__info-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.postContent__info-title {
  color: var(--Sort, #000001);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  margin-bottom: 5px;
}

.postContent__info-value {
  background: #badad6;
  border-radius: 3px;
  height: 50px;
  padding: 10px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  box-sizing: border-box;
}

.postContent__info-description {
  background: #badad6;
  border-radius: 3px;
  min-height: 210px;
  padding: 10px;
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
}

.postContent__info-description p {
  margin: 0;
  margin-bottom: 1rem;
}

.postContent__info-description p:last-child {
  margin-bottom: 0;
}

/* Question Section */
.postContent__question {
  color: var(--Sort, #000001);
  font-family: "Asap", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.postContent__question-subheader {
  color: var(--Sort, #000001);
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  margin-bottom: 25px;
}

/* Contact Section */
.postContent__contact-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background: #badad6;
  border-radius: 3px;
  padding: 15px;
  box-sizing: border-box;
  min-height: 180px;
}

.postContent__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.postContent__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.postContent__contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.postContent__contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.postContent__contact-text {
  color: #000;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.postContent__contact-text a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.postContent__contact-text a:hover {
  color: #000;
  text-decoration: underline;
}

.postContent__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: #eb5a37;
  color: #fff;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  border-radius: 2px;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.postContent__contact-btn:hover {
  background-color: #d14620;
  text-decoration: none;
  color: white;
}

/* See More Button */
.postContent__see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding: 17.5px 30px;
  border-radius: 2px;
  background: var(--Grn, #007668);
  color: #fff;
  font-family: Asap;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
  margin-top: 30px;
}

.postContent__see-more-btn:hover {
  background-color: #005a4f;
  text-decoration: none;
  color: white;
}

/* Map Section */
.postContent__map-title {
  color: var(--Sort, #000001);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 40px;
}

.postContent__map {
  overflow: hidden;
}

.postContent__map iframe {
  width: 100% !important;
  min-height: 300px;
  border: none;
}

/* Enhanced Responsive Design */

/* Large Tablet */
@media (max-width: 1024px) {
  .postContent__container {
    width: 95%;
    gap: 80px;
  }

  .postContent__header {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .postContent__question {
    font-size: 28px;
  }

  .postContent__image,
  .postContent__slide-image {
    height: 450px;
  }

  .postContent__slider-container {
    height: 450px;
  }

  .postContent__info-items {
    gap: 20px;
  }

  .postContent__contact-content {
    gap: 20px;
    padding: 20px;
    min-height: 160px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .postContent__container {
    gap: 60px;
  }

  .postContent__header {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .postContent__question {
    font-size: 24px;
  }

  .postContent__section-title {
    font-size: 18px;
  }

  .postContent__section-header {
    font-size: 18px;
  }

  .postContent__image,
  .postContent__slide-image {
    height: 400px;
  }

  .postContent__slider-container {
    height: 400px;
  }

  .postContent__info-items {
    flex-direction: column;
    gap: 15px;
  }

  .postContent__info-item {
    margin-bottom: 15px;
  }

  .postContent__contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    min-height: auto;
    padding: 25px;
  }

  .postContent__contact-btn {
    align-self: stretch;
    justify-content: center;
  }

  .postContent__organization-images {
    gap: 15px;
    margin-bottom: 40px;
  }

  .postContent__org-image {
    width: 100px;
    height: 50px;
  }
}

/* Mobile Landscape / Large Mobile */
@media (max-width: 768px) {
  .postContent__container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .postContent__left {
    order: 1;
  }

  .postContent__right {
    order: 2;
  }

  .postContent__back {
    margin-bottom: 25px;
  }

  .postContent__back-btn {
    font-size: 15px;
    gap: 5px;
  }

  .postContent__back-icon {
    width: 18px;
    height: 18px;
  }

  .postContent__media {
    margin-bottom: 30px;
  }

  .postContent__image,
  .postContent__slide-image {
    height: 300px;
  }

  .postContent__slider-container {
    height: 300px;
  }

  .postContent__slider-nav {
    width: 35px;
    height: 35px;
  }

  .postContent__slider-prev {
    left: 10px;
  }

  .postContent__slider-next {
    right: 10px;
  }

  .postContent__slider-dots {
    bottom: 10px;
    gap: 6px;
  }

  .postContent__slider-dot {
    width: 10px;
    height: 10px;
  }

  .postContent__header {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .postContent__question {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .postContent__question-subheader {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .postContent__section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .postContent__section-header {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .postContent__section-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .postContent__content-section {
    margin-bottom: 35px;
  }

  .postContent__categories {
    gap: 10px;
    margin-bottom: 25px;
  }

  .postContent__category {
    padding: 8px 12px;
    font-size: 14px;
  }

  .postContent__read-more-categories {
    gap: 8px;
  }

  .postContent__read-more-category-tag,
  .postContent__read-more-category-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .postContent__organization-images {
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
  }

  .postContent__org-image {
    width: 90px;
    height: 45px;
  }

  .postContent__info-items {
    flex-direction: column;
    gap: 15px;
  }

  .postContent__info-item {
    margin-bottom: 12px;
  }

  .postContent__info-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .postContent__info-value {
    height: 45px;
    padding: 12px;
    font-size: 16px;
    gap: 8px;
  }

  .postContent__info-description {
    min-height: 150px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.4;
  }

  .postContent__contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px;
    min-height: auto;
  }

  .postContent__contact-list {
    gap: 12px;
  }

  .postContent__contact-item {
    gap: 12px;
  }

  .postContent__contact-icon {
    width: 35px;
    height: 35px;
  }

  .postContent__contact-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .postContent__contact-btn {
    padding: 15px 25px;
    font-size: 16px;
    align-self: stretch;
    justify-content: center;
  }

  .postContent__see-more-btn {
    padding: 15px 25px;
    font-size: 16px;
    margin-top: 25px;
  }

  .postContent__map-title {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 30px;
  }

  .postContent__map iframe {
    min-height: 250px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .postContent {
    padding: 15px 0;
  }

  .postContent__container {
    gap: 30px;
    width: 100%;
    padding: 0 15px;
  }

  .postContent__back {
    margin-bottom: 20px;
  }

  .postContent__back-btn {
    font-size: 14px;
    gap: 4px;
  }

  .postContent__back-icon {
    width: 16px;
    height: 16px;
  }

  .postContent__media {
    margin-bottom: 25px;
  }

  .postContent__image,
  .postContent__slide-image {
    height: 220px;
  }

  .postContent__slider-container {
    height: 220px;
  }

  .postContent__slider-nav {
    width: 30px;
    height: 30px;
  }

  .postContent__slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .postContent__slider-prev {
    left: 8px;
  }

  .postContent__slider-next {
    right: 8px;
  }

  .postContent__slider-dots {
    bottom: 8px;
    gap: 5px;
  }

  .postContent__slider-dot {
    width: 8px;
    height: 8px;
  }

  .postContent__header {
    font-size: 20px;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .postContent__question {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .postContent__question-subheader {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .postContent__section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .postContent__section-header {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .postContent__section-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .postContent__content-section {
    margin-bottom: 25px;
  }

  .postContent__categories {
    gap: 8px;
    margin-bottom: 20px;
  }

  .postContent__category {
    padding: 6px 10px;
    font-size: 13px;
  }

  .postContent__read-more-categories {
    gap: 6px;
  }

  .postContent__read-more-category-tag,
  .postContent__read-more-category-link {
    padding: 6px 10px;
    font-size: 13px;
  }

  .postContent__organization-images {
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
  }

  .postContent__org-image {
    width: 75px;
    height: 37px;
  }

  .postContent__info-items {
    gap: 12px;
  }

  .postContent__info-item {
    margin-bottom: 10px;
  }

  .postContent__info-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .postContent__info-value {
    height: 40px;
    padding: 10px;
    font-size: 14px;
    gap: 6px;
  }

  .postContent__info-value svg {
    width: 20px;
    height: auto;
  }

  .postContent__info-description {
    min-height: 120px;
    padding: 12px;
    font-size: 15px;
    line-height: 1.4;
  }

  .postContent__contact-content {
    gap: 15px;
    padding: 15px;
  }

  .postContent__contact-list {
    gap: 10px;
  }

  .postContent__contact-item {
    gap: 10px;
  }

  .postContent__contact-icon {
    width: 30px;
    height: 30px;
  }

  .postContent__contact-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .postContent__contact-btn {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .postContent__contact-btn svg {
    width: 24px;
    height: 24px;
  }

  .postContent__see-more-btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 20px;
    gap: 8px;
  }

  .postContent__see-more-btn svg {
    width: 24px;
    height: 24px;
  }

  .postContent__map-title {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 25px;
  }

  .postContent__map iframe {
    min-height: 200px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .postContent__container {
    gap: 25px;
    padding: 0 12px;
  }

  .postContent__image,
  .postContent__slide-image {
    height: 180px;
  }

  .postContent__slider-container {
    height: 180px;
  }

  .postContent__header {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .postContent__question {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .postContent__question-subheader {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .postContent__section-title,
  .postContent__section-header {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .postContent__section-text {
    font-size: 14px;
  }

  .postContent__content-section {
    margin-bottom: 20px;
  }

  .postContent__category,
  .postContent__read-more-category-tag,
  .postContent__read-more-category-link {
    padding: 5px 8px;
    font-size: 12px;
  }

  .postContent__org-image {
    width: 65px;
    height: 32px;
  }

  .postContent__info-title {
    font-size: 15px;
  }

  .postContent__info-value {
    height: 35px;
    padding: 8px;
    font-size: 13px;
  }

  .postContent__info-description {
    min-height: 100px;
    padding: 10px;
    font-size: 14px;
  }

  .postContent__contact-content {
    padding: 12px;
    gap: 12px;
  }

  .postContent__contact-text {
    font-size: 13px;
  }

  .postContent__contact-btn,
  .postContent__see-more-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .postContent__map iframe {
    min-height: 180px;
  }
}
