/* ===== PROMO SERVICES V2 (FIGMA MATCH) ===== */

.promo-services-v2 {
  background: #d9d9d9;
  border-radius: 24px;
  padding: 44px 60px;
  min-height: 312px;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.promo-services-v2 .promo-content {
  max-width: 520px;
  z-index: 2;
}

.promo-services-v2 h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.promo-services-v2 p {
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #1e1e1e;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-pill-custom {
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 16px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pill-custom img {
  width: 16px;
  height: 16px;
  /* filter: invert(1); */
}

/* RIGHT IMAGE */
.promo-services-v2 .promo-image {
  width: 480px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.promo-services-v2 .promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLACK RIGHT EDGE (FIGMA STYLE) */
.promo-services-v2::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  height: 100%;
  background: #000;
  z-index: 1;
}

/* IMAGE OVERLAY CUT EFFECT */
.promo-services-v2 .promo-image {
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .promo-services-v2 {
    padding: 36px;
  }

  .promo-services-v2 .promo-image {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .promo-services-v2 {
    flex-direction: column;
    padding: 24px;
  }

  .promo-services-v2::after {
    display: none;
  }

  .promo-services-v2 .promo-image {
    width: 100%;
    height: 220px;
    margin-top: 20px;
  }

  .promo-services-v2 h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .promo-services-v2 p {
    font-size: 16px;
  }
}






/* Marketplace Ad - Figma node 2:68860 */
.marketplace-ad {
  min-height: 312px;
  background: #f8b400;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketplace-ad-copy {
  width: 531px;
  padding-left: 60px;
}

.marketplace-ad h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
  position: relative;
}

.marketplace-ad h2 span {
  display: inline-block;
  width: 187px;
  height: 26px;
  background: #fff;
  margin-left: 14px;
  vertical-align: middle;
}

.marketplace-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.marketplace-ad .btn-pill {
  min-height: 52px;
  padding: 12px 32px;
  gap: 10px;
}

.marketplace-ad .btn-pill img {
  width: 16px;
  height: 16px;
  /* filter: invert(1); */
}

.marketplace-ad-image {
  width: 500px;
  height: 312px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.marketplace-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .marketplace-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .marketplace-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .marketplace-ad-image {
    width: 100%;
    height: 240px;
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 575px) {
  .marketplace-ad-copy {
    padding: 24px;
  }

  .marketplace-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .marketplace-ad h2 span {
    width: 110px;
    height: 18px;
    margin-left: 8px;
  }

  .marketplace-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .marketplace-ad .btn-pill {
    width: 100%;
    justify-content: center;
  }
}






/* Real Estate Ad - Figma node 2:69094 */
.realestate-ad {
  min-height: 312px;
  background: #3f3f97;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.realestate-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(0,0,0,.16) 0 180px, transparent 181px),
    radial-gradient(circle at 44% 115%, rgba(0,0,0,.18) 0 250px, transparent 251px);
  pointer-events: none;
}

.realestate-ad::after {
  content: "";
  position: absolute;
  left: 48%;
  top: -20%;
  width: 180px;
  height: 150%;
  background: #3f3f97;
  transform: rotate(-27deg);
  z-index: 2;
}

.realestate-ad-copy {
  position: relative;
  z-index: 3;
  width: 531px;
  padding-left: 60px;
  color: #fff;
}

.realestate-ad h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.realestate-ad p {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.realestate-ad-btn {
  min-height: 52px;
  padding: 12px 32px;
  background: #f8b400;
  color: #1e1e1e;
  gap: 10px;
}

.realestate-ad-btn img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.realestate-ad-image {
  position: absolute;
  right: 38px;
  top: 28px;
  bottom: 28px;
  width: 508px;
  z-index: 1;
  overflow: hidden;
}

.realestate-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .realestate-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .realestate-ad::after {
    display: none;
  }

  .realestate-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .realestate-ad-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 575px) {
  .realestate-ad-copy {
    padding: 24px;
  }

  .realestate-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .realestate-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .realestate-ad-btn {
    width: 100%;
    justify-content: center;
  }
}






/* Events Ad - Figma node 2:69559 */
.events-ad {
  min-height: 312px;
  background: #e8f4f8;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events-ad-copy {
  width: 531px;
  padding-left: 60px;
}

.events-ad h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.events-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.events-ad .btn-pill {
  min-height: 52px;
  padding: 12px 32px;
  gap: 10px;
}

.events-ad .btn-pill img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.events-ad-image {
  width: 500px;
  height: 312px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.events-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .events-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .events-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .events-ad-image {
    width: 100%;
    height: 240px;
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 575px) {
  .events-ad-copy {
    padding: 24px;
  }

  .events-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .events-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .events-ad .btn-pill {
    width: 100%;
    justify-content: center;
  }
}







/* Cars Ad - Figma node 2:69792 */
.cars-ad {
  min-height: 312px;
  background: #fff;
  border-left: 2px solid #f8b400;
  border-bottom: 2px solid #f8b400;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.cars-ad-copy {
  width: 578px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cars-ad-title {
  background: #f8b400;
  min-height: 144px;
  padding: 26px 47px 18px;
  position: relative;
}

.cars-ad-title::after {
  content: "";
  position: absolute;
  left: 82px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #f8b400;
  transform: rotate(45deg);
}

.cars-ad h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0;
}

.cars-ad-body {
  padding: 18px 42px 28px;
}

.cars-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 18px;
}

.cars-ad-btn {
  min-height: 52px;
  padding: 12px 32px;
  background: #f8b400;
  color: #1e1e1e;
  gap: 10px;
}

.cars-ad-btn img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.cars-ad-image {
  flex: 1;
  min-width: 0;
  height: 312px;
  overflow: hidden;
}

.cars-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .cars-ad {
    flex-direction: column;
  }

  .cars-ad-copy {
    width: 100%;
  }

  .cars-ad-image {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 575px) {
  .cars-ad-title {
    min-height: auto;
    padding: 24px;
  }

  .cars-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .cars-ad-body {
    padding: 24px;
  }

  .cars-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .cars-ad-btn {
    width: 100%;
    justify-content: center;
  }
}






/* Jobs Ad - Figma node 2:70096 */
.jobs-ad {
  min-height: 312px;
  background: #280178;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
}

.jobs-ad-copy {
  width: 680px;
  padding: 44px 60px;
  color: #fff;
  flex-shrink: 0;
}

.jobs-ad h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.jobs-ad p {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.jobs-ad-btn {
  min-height: 52px;
  padding: 12px 32px;
  background: #f8b400;
  color: #fff;
  gap: 10px;
}

.jobs-ad-btn img {
  width: 16px;
  height: 16px;
  /* filter: invert(1); */
}

.jobs-ad-divider {
  width: 14px;
  background: #fff;
  flex-shrink: 0;
}

.jobs-ad-image {
  flex: 1;
  min-width: 0;
  height: 312px;
  overflow: hidden;
}

.jobs-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .jobs-ad {
    flex-direction: column;
  }

  .jobs-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .jobs-ad-divider {
    width: 100%;
    height: 10px;
  }

  .jobs-ad-image {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 575px) {
  .jobs-ad-copy {
    padding: 24px;
  }

  .jobs-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .jobs-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .jobs-ad-btn {
    width: 100%;
    justify-content: center;
  }
}








/* Matrimonial Ad - Figma node 2:70369 */
.matrimonial-ad {
  min-height: 312px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.matrimonial-ad-copy {
  position: relative;
  z-index: 3;
  width: 531px;
  padding-left: 60px;
}

.matrimonial-ad h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.matrimonial-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 438px;
  opacity: .9;
  margin: 0 0 20px;
}

.matrimonial-ad .btn-pill {
  min-height: 52px;
  padding: 12px 32px;
  gap: 10px;
}

.matrimonial-ad .btn-pill img {
  width: 16px;
  height: 16px;
  /* filter: invert(1); */
}

.matrimonial-ad-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.matrimonial-ad-art::before,
.matrimonial-ad-art::after {
  content: "";
  position: absolute;
  top: -40px;
  height: 430px;
  width: 48px;
  background: #b77c96;
  transform: rotate(33.75deg);
  transform-origin: top left;
}

.matrimonial-ad-art::before {
  left: 900px;
  z-index: 1;
}

.matrimonial-ad-art::after {
  left: 980px;
  z-index: 1;
  /* background: rgba(183, 124, 150, .85); */
}

.matrimonial-ad-art-alt::before {
  content: "";
  position: absolute;
  top: 0px;
  height: 430px;
  width: 30px;
  background: #6d1723;
  transform: rotate(90deg);
  transform-origin: top left;
}

.matrimonial-ad-art-alt::before {
  left: 1400px;
  /* z-index: 1; */
}

/* .matrimonial-ad-art-alt::after {
  left: 980px;
  z-index: 1;
  background: rgba(183, 124, 150, .85);
} */

.matrimonial-ad-image {
  position: absolute;
  right: 0;
  top: 28px;
  width: 510px;
  /* height: 283px; */
  overflow: hidden;
  /* border-radius: 0 18px 18px 0; */
  /* z-index: 2; */
}

.matrimonial-ad-image::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 200px;
    width: 30px;
    height: 390px;
    background: #6d1723;
    transform: rotate(0deg);
    z-index: 0;
}

.matrimonial-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6rem 0 0 0;
}

@media (max-width: 991px) {
  .matrimonial-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .matrimonial-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .matrimonial-ad-art {
    display: none;
  }

  .matrimonial-ad-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 240px;
    border-radius: 0 0 24px 24px;
  }

  .matrimonial-ad-image::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .matrimonial-ad-copy {
    padding: 24px;
  }

  .matrimonial-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .matrimonial-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .matrimonial-ad .btn-pill {
    width: 100%;
    justify-content: center;
  }
}







/* Classifieds Ad - Figma node 2:70653 */
.classifieds-ad {
  min-height: 312px;
  background: #06c1c6;
  border: 10px solid #06c1c6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.classifieds-ad-copy {
  position: relative;
  z-index: 3;
  width: 531px;
  padding-left: 40px;
}

.classifieds-ad h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.classifieds-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.classifieds-ad-btn {
  min-height: 52px;
  padding: 12px 32px;
  background: #fff;
  color: #1e1e1e;
  gap: 10px;
}

.classifieds-ad-btn img {
  width: 16px;
  height: 16px;
    filter: invert(1);
}

.classifieds-ad-image {
  position: absolute;
  right: 74px;
  top: 0;
  width: 335px;
  height: 281px;
  z-index: 2;
  background: #fff;
  padding: 0 14px 14px 0;
}

.classifieds-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.classifieds-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.classifieds-shape-one {
  left: 704px;
  top: 87px;
  width: 120px;
  height: 120px;
  border: 16px solid #f8b400;
}

.classifieds-shape-two {
  left: 662px;
  top: 147px;
  width: 84px;
  height: 84px;
  border: 5px solid #000;
}

.classifieds-shape-three {
  right: 28px;
  top: 146px;
  width: 50px;
  height: 51px;
  background: #f8b400;
}

.classifieds-shape-four {
  right: 19px;
  bottom: 27px;
  width: 61px;
  height: 66px;
  border: 5px solid #000;
}

@media (max-width: 991px) {
  .classifieds-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .classifieds-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .classifieds-ad-image {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 48px);
    height: 240px;
    margin: 0 24px 24px;
  }

  .classifieds-shape {
    display: none;
  }
}

@media (max-width: 575px) {
  .classifieds-ad-copy {
    padding: 24px;
  }

  .classifieds-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .classifieds-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .classifieds-ad-btn {
    width: 100%;
    justify-content: center;
  }

  .classifieds-ad-image {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }
}








/* Business Ad - Figma node 2:70935 */
.business-ad {
  min-height: 312px;
  background: #f6f6f6;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.business-ad-copy {
  position: relative;
  z-index: 4;
  width: 560px;
  margin-left: 108px;
}

.business-ad h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.business-ad p {
  color: #1e1e1e;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.business-ad .btn-pill {
  min-height: 52px;
  padding: 12px 32px;
  gap: 10px;
}

.business-ad .btn-pill img {
  width: 16px;
  height: 16px;
  /* filter: invert(1); */
}

.business-ad-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 495px;
  height: 312px;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.business-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-buildings {
  position: absolute;
  left: 466px;
  bottom: 0;
  width: 348px;
  height: 72px;
  z-index: 1;
  background:
    linear-gradient(#c9d0d8, #c9d0d8) left bottom / 119px 52px no-repeat,
    linear-gradient(20deg, transparent 0 32px, #c9d0d8 33px) 118px bottom / 228px 52px no-repeat;
}

.business-buildings::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 1280px;
  height: 20px;
  background: #c9d0d8;
  transform: translateX(-466px);
}

.business-pattern {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.business-pattern-left {
  left: 0;
  top: 0;
  width: 38px;
  height: 262px;
  background: #c9d0d8;
}

.business-pattern-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 58px;
  height: 64px;
  background: repeating-linear-gradient(
    20deg,
    #f8b400 0 7px,
    transparent 7px 15px
  );
}

.business-pattern-mid {
  left: 736px;
  top: 13px;
  width: 69px;
  height: 106px;
  background: repeating-linear-gradient(
    20deg,
    #f8b400 0 8px,
    transparent 8px 18px
  );
}

.business-pattern-right {
  right: 0;
  bottom: 30px;
  width: 70px;
  height: 106px;
  background: repeating-linear-gradient(
    20deg,
    #f8b400 0 8px,
    transparent 8px 18px
  );
}

@media (max-width: 991px) {
  .business-ad {
    flex-direction: column;
    align-items: stretch;
  }

  .business-ad-copy {
    width: 100%;
    margin-left: 0;
    padding: 32px;
  }

  .business-ad-image {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 0 0 24px 24px;
  }

  .business-buildings,
  .business-pattern {
    display: none;
  }
}

@media (max-width: 575px) {
  .business-ad-copy {
    padding: 24px;
  }

  .business-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .business-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .business-ad .btn-pill {
    width: 100%;
    justify-content: center;
  }
}





/* Premium Visibility Ad - Figma node 2:71196 */
.premium-ad {
  min-height: 312px;
  background: #003970;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.premium-ad-copy {
  position: relative;
  z-index: 4;
  width: 560px;
  padding-left: 60px;
  color: #fff;
}

.premium-ad h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.premium-ad p {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  max-width: 508px;
  opacity: .9;
  margin: 0 0 20px;
}

.premium-ad-btn {
  min-height: 52px;
  padding: 12px 32px;
  background: #f8b400;
  color: #1e1e1e;
  gap: 10px;
}

.premium-ad-btn img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.premium-ad-image {
  position: absolute;
  right: 154px;
  top: 0;
  width: 374px;
  height: 312px;
  z-index: 2;
  overflow: hidden;
}

.premium-ad-image::before,
.premium-ad-image::after {
  content: "";
  position: absolute;
  top: -60px;
  width: 24px;
  height: 440px;
  transform: rotate(-25deg);
  z-index: 3;
}

.premium-ad-image::before {
  left: -8px;
  background: #003970;
}

.premium-ad-image::after {
  right: 20px;
  background: #b77c96;
}

.premium-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-shape {
  position: absolute;
  pointer-events: none;
}

.premium-shape-one {
  right: 0;
  top: 0;
  width: 170px;
  height: 100%;
  background: #f8b400;
  clip-path: polygon(120% 0%, 100% 0%, 100% 100%, -15% 100%);
  z-index: 1;
}

.premium-shape-two {
  right: 370px;
  top: -60px;
  width: 160px;
  height: 430px;
  background: #c9d0d8;
  transform: rotate(-25deg);
  z-index: 1;
}

.premium-shape-three {
  right: 465px;
  top: -80px;
  width: 24px;
  height: 430px;
  background: #b77c96;
  transform: rotate(-25deg);
  z-index: 3;
}

@media (max-width: 991px) {
  .premium-ad {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .premium-ad-copy {
    width: 100%;
    padding: 32px;
  }

  .premium-ad-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 240px;
  }

  .premium-ad-image::before,
  .premium-ad-image::after,
  .premium-shape {
    display: none;
  }
}

@media (max-width: 575px) {
  .premium-ad-copy {
    padding: 24px;
  }

  .premium-ad h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .premium-ad p {
    font-size: 16px;
    line-height: 24px;
  }

  .premium-ad-btn {
    width: 100%;
    justify-content: center;
  }
}

.search-input-ui {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #333;
}

.search-input-ui::placeholder {
  color: #999;
}

.field-location {
  position: relative;
  cursor: pointer;
}

.location-dropdown {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
}

.location-dropdown div {
  padding: 10px 15px;
}

.location-dropdown div:hover {
  background: #f5f5f5;
}