.maker-choice .container{
  padding-left: 0px;
  padding-right: 0px;
  max-width:1440px;
  margin:0 auto;
}

.maker-choice__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .maker-choice__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========== Shared Card Base ========== */
.maker-choice__card {
  position: relative;
  grid-column: span var(--maker-card-column-span, 12);
  width: 100%;
  aspect-ratio: var(--maker-card-aspect-ratio, 1 / 1);
  container-type: inline-size;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.maker-choice__card:hover {
  transform: translateY(-3px);
}

.maker-choice__link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* ========== Vote Card (Left) ========== */
.maker-choice__card--vote {
  background-color: var(--card-bg, #333333);
}

.maker-choice__bg-img {
  position: absolute;
  inset: 0;
}

.maker-choice__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maker-choice__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.maker-choice__content--left {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.maker-choice__subtitle--vote {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color, #FFFFFF);
  margin: 0 0 8px;
  opacity: 0.9;
}

.maker-choice__title--left,
.maker-choice__content--left .maker-choice__title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--title-color, #FFFFFF);
  margin: 0;
}

.maker-choice__description--vote {
  max-width: 60ch;
  margin: 12px 0 0;
  color: var(--text-color, #FFFFFF);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .maker-choice{
    padding-right: 10px;
    padding-left: 10px;
  }
  .maker-choice__content--left {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .maker-choice__content--left .maker-choice__title {
    font-size: 22px;
  }

  .maker-choice__subtitle--vote,
  .maker-choice__description--vote {
    font-size: 13px;
  }
}

/* ========== Reminder Card (Right) ========== */
.maker-choice__card--reminder {
  background-color: var(--card-bg, #F0E6D8);
}

.maker-choice__card--reminder .maker-choice__bg-img {
  position: absolute;
  inset: 0;
}

.maker-choice__card--reminder .maker-choice__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maker-choice__content--right {

}

.maker-choice__subtitle--reminder {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-color, #333333);
  
  font-weight: 500;
  max-width: 160px;
  text-align: center;

  position: absolute;
  top: 26%;
  left: 53%;
  transform: translate(-50%, -50%) skewY(6deg);
}

.maker-choice__content--right .maker-choice__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--title-color, #111111);
  margin:0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewY(7deg);
  text-align: center;
}

.maker-choice__description--reminder {
  display: -webkit-box;
  max-width: 70%;
  margin: 0;
  overflow: hidden;
  color: var(--text-color, #333333);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%) skewY(7deg);
}
 
.maker-choice__btn {
  display: inline-block;
  padding: 10px 26px;
  background-color: var(--btn-bg, #222222);
  color: var(--btn-text, #FFFFFF);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  

  position: absolute;
  bottom: 20%;
  left: 45%;
  transform: translate(-50%, -50%) skewY(9deg);
}

/* ========== Social Card ========== */
.maker-choice__card--social {
  background-color: var(--card-bg, #1E3B4F);
}

.maker-choice__social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.18) 52%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.maker-choice__content--social {
  position: absolute;
  right: clamp(20px, 6%, 40px);
  bottom: clamp(22px, 7%, 42px);
  left: clamp(20px, 6%, 40px);
  z-index: 2;
  color: var(--text-color, #FFFFFF);
}

.maker-choice__social-title {
  max-width: 12ch;
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(30px, 9cqw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.maker-choice__subtitle--social {
  margin: 0;
  color: inherit;
  font-size: clamp(15px, 4cqw, 24px);
  line-height: 1.35;
}

.maker-choice__description--social {
  max-width: 48ch;
  margin: clamp(8px, 1.8cqw, 14px) 0 0;
  color: inherit;
  font-size: clamp(13px, 2.8cqw, 17px);
  line-height: 1.45;
  opacity: 0.88;
}

.maker-choice__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3cqw, 16px);
  margin-top: clamp(18px, 5cqw, 28px);
}

.maker-choice__social-link {
  display: inline-flex;
  width: clamp(46px, 10.5cqw, 62px);
  height: clamp(46px, 10.5cqw, 62px);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--social-icon-color, #111111);
  background: var(--social-button-bg, #FFFFFF);
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.maker-choice__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.maker-choice__social-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.maker-choice__social-link svg {
  width: 70%;
  height: 70%;
}

.maker-choice__social-link svg > rect {
  display: none;
}

.maker-choice__social-link svg path {
  fill: currentColor;
}

.maker-choice__social-link--youtube svg path:last-child {
  fill: var(--social-button-bg, #FFFFFF);
}

/* ========== Modal ========== */
.maker-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.maker-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.maker-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.maker-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  z-index: 1;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.maker-modal.is-open .maker-modal__content {
  transform: translateY(0);
}

.maker-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s ease;
}

.maker-modal__close:hover {
  color: #111111;
}

.maker-modal__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111111;
}

.maker-modal__desc {
  font-size: 14px;
  color: #666666;
  margin: 0 0 24px;
  line-height: 1.5;
}

.maker-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.maker-modal__input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 15px;
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease;
}

.maker-modal__input:focus {
  border-color: #111111;
}

.maker-modal__submit {
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.maker-modal__submit:hover {
  opacity: 0.85;
}

@media screen and (max-width: 767px) {
  .maker-choice__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .maker-choice__card {
    grid-column: 1 / -1;
  }

  .maker-choice__content--right {
   
    max-width: 240px;
    text-align: center;
  }

  .maker-choice__content--right .maker-choice__title {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .maker-choice__subtitle--reminder {
    font-size: 14px;
    left: 53%;
    max-width: 160px;
    top: 29%;
  }

  .maker-choice__description--reminder {
    max-width: 75%;
    font-size: 12px;
    top: 65%;
  }

  .maker-choice__btn {
    margin-right: 0;
    font-size: 14px;
    padding: 9px 22px;
    bottom:15%;
  }

  .maker-choice__social-title {
    font-size: clamp(28px, 9vw, 44px);
  }

  .maker-choice__subtitle--social {
    font-size: clamp(15px, 4.5vw, 20px);
  }

  .maker-choice__description--social {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .maker-choice__social-link {
    width: clamp(46px, 14vw, 58px);
    height: clamp(46px, 14vw, 58px);
  }

  .maker-modal__content {
    padding: 24px;
  }

  .maker-modal__title {
    font-size: 20px;
  }
}
