.hero-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-title-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
div#campaignDescription{
  padding-top: 30px;
}
.component {
  padding-bottom: 10px;
}
.main-title {
  margin-bottom: 10px;
}
.paragraph {
  max-width: 1140px;
}
.ol-style {
  list-style-type: decimal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* campaign list  */
.campaign-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.campaign-list-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1%;
  color: #000;
}
.campaign-desktop-list-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.campaign-desktop-list-items input {
  display: none;
}

.campaign-desktop-list-items label {
  min-width: 196.67px;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 22.4px;
  color: #000;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 20px;
  box-sizing: border-box;
  transition: background-color 0.5s, border-color 0.5s;
}
.campaign-desktop-list-items label:hover {
  background-color: #f2f2f2;
}

.campaign-desktop-list-items input:checked + label {
  border: 1px solid #e8e8e8;
  background-color: #e8e8e8; /* Assuming you want the background to be white when active */
}
.campaign-desktop-list-items {
  /* display: none; */
}

.social-circle-icon {
  border-radius: 100%;
  cursor: pointer;
}
.social-circle-icon:hover {
  background-color: #e8e8e8;
}

.toggle-icon {
  width: 40px;
  height: 40px;
}

/* media queries  */

/* tab screen  */
@media (min-width: 768px) {
  .hero-title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-section-wrapper {
    gap: 24px;
  }
  .campaign-list-wrapper {
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .campaign-list-field {
    width: 400px;
  }
  .campaign-list-label {
    font-size: 28px;
    line-height: 44.8px;
  }
  .toggle-icon {
    width: 48px;
    height: 48px;
  }
  .component {
    padding-bottom: 30px;
  }
}

/* desktop screen  */
@media (min-width: 1024px) {
  .campaign-desktop-list-items {
    display: flex;
  }
}

/* #### CAMPAIGN CARD #### */
.campaign-card-wrapper {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: max-height 1.5s ease-in-out;
  max-height: unset; /* Adjust this value to show the title and hashtags */
}

.campaign-card-wrapper.collapsing,
.campaign-card-wrapper.expanded {
  max-height: none;
}

.campaign-card-content {
  padding: 16px;
}

.campaign-collaps-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}
.campaign-collaps-svg {
  fill: white;
  transition: background-color 0.5s, border-color 0.5s;
}
.campaign-collaps-svg:hover {
  fill: #f2f2f2;
}

.campaign-card-wrapper.expanded .campaign-collaps-icon .toggle-icon {
  transform: rotate(180deg);
}
.campaign-card-wrapper .campaign-collaps-icon .toggle-icon{
  fill: transparent;
  width: 13px;
  height: unset;
  position: absolute;
  right: 0;
  top: 8px;
  transition: .3s;
}
.campaign-card-wrapper .campaign-collaps-icon .toggle-icon rect{
  fill: transparent;
    stroke: transparent;
}

.campaign-card-wrapper .campaign-collaps-icon .toggle-icon path{
  stroke: #000;
}

main.campaign-card-wrapper .campaign-collaps-icon{
   padding-right: 20px;
}

main.campaign-card-wrapper.expanded .campaign-collaps-icon{
   font-size: 0;
}

main.campaign-card-wrapper.expanded .campaign-collaps-icon:before{
    content: "See less";
  
    font-size: 16px;
}
.campaign-description-wrapper {
  display: none;
}

.campaign-card-wrapper.expanded .campaign-description-wrapper {
  display: block;
}

/* hash tag wrapper  */
.hastag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hastag-items {
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #f0f0f0;
}

.tag-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ol-style {
  padding-inline-start: 16px;
}
/* #### CAMPAIGN CARD #### */

/* media query */

/* mobile screen  */
@media (min-width: 768px) {
  .campaign-card-content {
    padding: 40px;
  }
  .campaign-collaps-icon {
    top: 40px;
    right: 24px;
  }
  .campaign-card-wrapper {
    max-height: unset; /* Adjust this value for tablet view */
  }
  .ol-style {
    padding-inline-start: 20px;
  }
  .hastag-wrapper {
    gap: 10px;
  }
}

/* desktop screen  */
@media (min-width: 1024px) {
  .campaign-collaps-icon {
    top: 40px;
    right: 40px;
  }
  .campaign-card-wrapper {
    max-height: 350px; /* Adjust this value for desktop view */
  }
  .campaign-list-field {
    display: none;
  }
  .campaign-list-wrapper {
    flex-direction: column;
    align-items: start;
  }
}
/* #### CAMPAIGN CARD END #### */
.campaign-desktop-list-items div.cmfinderbutton{

  min-width: 196.67px;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 22.4px;
  color: #000;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 20px;
  box-sizing: border-box;
  transition: background-color 0.5s, border-color 0.5s;
}
.campaign-desktop-list-items div.cmfinderbutton:hover,
.campaign-desktop-list-items div.cmfinderbutton.active{
  background-color: #f2f2f2;
}