/**
 * CSS File: entry-buttons.css
 * 2026-05-29 | Final checked
 */

.c-entry-buttons {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.c-entry-buttons__bg-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
  line-height: 0;
}

.c-entry-buttons__bg-decoration img {
  display: block;
  max-width: 100%;
  height: auto;
}

.c-entry-buttons__bg-img {
  display: block;
  width: 85vw;
  height: auto;
  transform: rotate(180deg);
  object-fit: contain;
}

.c-entry-buttons__item {
  text-align: center;
}

.c-entry-buttons__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f69381;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 20px 40px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(246, 147, 129, 0.3);
  transition: all 0.3s;
}

.c-entry-buttons__btn-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.c-entry-buttons__btn-note {
  font-size: 0.75rem;
  color: #1f2937;
  margin-top: 10px;
}

.c-entry-buttons__label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.c-entry-buttons__sub {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .c-entry-buttons {
    flex-direction: unset;
  }

  .c-entry-buttons__bg-img {
    width: 50vw;
  }

  .c-entry-buttons__item {
    flex: 1;
  }
  .c-entry-buttons__btn {
    font-size: 1.25rem;
    padding: 24px 60px;
  }
  .c-entry-buttons__btn:hover {
    background-color: #ff7b6b;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(246, 147, 129, 0.4);
  }
}
