/* 멤버십 롤링 배너 */

.main-mem-banner {
  text-align: center;
}

.main-mem-banner a {
  width: 100%;
  outline: none;
}

.main-mem-banner img {
  width: 900px;
  height: 75px;
  aspect-ratio: 12 / 1;
  object-fit: cover;
}

.main_mem_banner_pc {
 
}

.main_mem_banner_mobile {
  display: none !important;
}

@media only screen and (min-width: 690px) and (max-width: 1023px) {
  .main-mem-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 1;
    object-fit: cover;
  }
}

@media only screen and (max-width: 689px) {
  .main-mem-banner {
    width: 100%;
  }

  .main-mem-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
  }

  .main_mem_banner_pc {
    display: none !important;
  }

  .main_mem_banner_mobile {
    display: block !important;
  }
}


/* 기사면 멤버십 롤링 배너 */

    .article_img_wrap {
        text-align: center;
    }

    .article_img_wrap a {
        width: 100%;
        outline: none;
    }

    .raw_article_banner {
        width: 100%;
        aspect-ratio: 12 / 1;
    }

    .raw_article_pc {}

    .raw_article_mobile {
        display: none !important;
    }

    @media only screen and (max-width: 739px) {
        .raw_article_banner {
            aspect-ratio: 6 / 1;
        }

        .raw_article_pc {
            display: none !important;
        }

        .raw_article_mobile {
            display: block !important;
        }
    }