.maker-choice {
  padding-top: var(--section-padding-top, 20px);
  padding-bottom: var(--section-padding-bottom, 20px);
}
.maker-choice .container{
  padding-left: 0px;
  padding-right: 0px;
  max-width:1440px;
  margin:0 auto;
}

.maker-choice__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media screen and (max-width: 767px) {
  .maker-choice__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========== Shared Card Base ========== */
.maker-choice__card {
  position: relative;
  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;
}

/* ========== Vote Card (Left) ========== */
.maker-choice__card--vote {
  background-color: var(--card-bg, #333333);
  min-height: 480px;
}

.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__label {
  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;
}

@media screen and (max-width: 767px) {
  .maker-choice{
    padding:10px;
  }
  .maker-choice__content--left {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .maker-choice__content--left .maker-choice__title {
    font-size: 22px;
  }

  .maker-choice__label {
    font-size: 13px;
  }
}

/* ========== Reminder Card (Right) ========== */
.maker-choice__card--reminder {
  background-color: var(--card-bg, #F0E6D8);
  min-height: 480px;
}

.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__sub {
  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__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);
}
 

/* ========== 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--vote,
  .maker-choice__card--reminder {
    min-height: 320px;
    aspect-ratio: 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__sub {
    font-size: 14px;
    left: 53%;
    max-width: 160px;
    top: 29%;
  }

  .maker-choice__btn {
    margin-right: 0;
    font-size: 14px;
    padding: 9px 22px;
    bottom:15%;
  }

  .maker-modal__content {
    padding: 24px;
  }

  .maker-modal__title {
    font-size: 20px;
  }
}
