.social-post-wrapper {
  margin-top: 32px;
  width: 100%;
  height: auto;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
}

.social-content-wrapper {
  padding: 16px;
}

.socal-post-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-post-select-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;

  gap: 16px;
}
.select-field1 {
  width: 100%;
}
.select-field2 {
  width: 100%;
}
.social-hr-wrapper {
  padding-top: 20px;
}
.social-post-header-icon {
  width: 16px;
  height: 16px;
}
.social-post-section-wrapper {
  padding-top: 20px;
}

/* #### MEDIA QUERY ##### */
/* #### MOBILE SCREEN ##### */

@media (min-width: 768px) {
  .social-post-wrapper {
    margin-top: 40px;
  }
  .social-content-wrapper {
    padding: 40px;
  }
  .social-post-select-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .select-field1 {
    width: 50%;
  }
  .select-field2 {
    width: 50%;
  }
  .social-hr-wrapper {
    padding-top: 40px;
  }
  .social-post-header-icon {
    width: 24px;
    height: 24px;
  }
  .social-post-section-wrapper {
    padding-top: 40px;
  }
}

/* ###DESKTOP SCREEN ### */
@media (min-width: 1024px) {
  .socal-post-header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .select-field1 {
    width: 287px;
  }
  .select-field2 {
    width: 287px;
  }
  .social-post-select-wrapper {
    width: unset;
  }
  .social-hr-wrapper {
    padding-top: 20px;
  }
}

/* ******** card style ********* */

.post-card-wrapper {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #c4c4c4;
  min-width: 0;
}

.card-poster {
  width: 100%;
  height: 202px;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.post-card-content {
  padding: 16px;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to 1 column */
  grid-gap: 20px;
  min-width: 0;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .card-grid {
    gap: 40px;
  }
}

/* ###### MEDIA QUERY ###### */

/* ##### TAB SCREEN  */
@media (min-width: 768px) {
  .post-card-content {
    padding: 20px;
  }
}

/* ##### DESKTOP SCREEN ##### */

/* ******** card style end ********* */
