@charset "UTF-8";
/**
 * GREETINGS PAGE SCSS
 * 인사말 페이지
 */
/* ========================================
   Sub Tabs (탭메뉴)
   ======================================== */
.sub-tabs {
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #e1e1e4;
}
.sub-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .sub-tabs-inner {
    overflow-x: auto;
    gap: 2px;
  }
  .sub-tabs-inner::-webkit-scrollbar {
    display: none;
  }
}

.sub-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  color: #505050;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid transparent;
  height: 100%;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.sub-tab-item:hover {
  color: var(--primary);
}
.sub-tab-item.active {
  color: var(--primary);
  font-weight: 700;
  border-bottom-color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .sub-tab-item {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

/* ========================================
   Greetings Section (인사말 섹션)
   ======================================== */
.greetings-section {
  width: 100%;
  padding: 5rem 0 10rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-section {
    padding: 3.75rem 0 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-section {
    padding: 2.5rem 0 5rem;
  }
}

.greetings-content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-content {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-content {
    gap: 1.875rem;
  }
}

/* ========================================
   Header (제목 영역)
   ======================================== */
.greetings-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .greetings-header {
    gap: 0.625rem;
  }
}

.greetings-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  line-height: 1.5;
  color: var(--font1);
  text-align: center;
  white-space: pre;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-title {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-title {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 0.25rem;
  }
}

.greetings-title-sub {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
}

.greetings-title-main {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}

/* ========================================
   Message Box (인사말 박스)
   ======================================== */
.greetings-message-box {
  background-color: var(--bg2);
  border: 1px solid #eff2f6;
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 42.5rem;
  max-width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-message-box {
    width: 100%;
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-message-box {
    padding: 1.5rem;
    border-radius: 0.9375rem;
  }
}

.greetings-message-text {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--font1);
  letter-spacing: -0.0225rem;
  width: 100%;
}
.greetings-message-text p {
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-message-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-message-text {
    font-size: 0.9375rem;
  }
}

.greetings-thanks {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--font2);
  letter-spacing: -0.0225rem;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-thanks {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-thanks {
    font-size: 0.9375rem;
  }
}

.greetings-signature {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0 0;
  width: 100%;
}
.greetings-signature p {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--font1);
  letter-spacing: -0.02rem;
  margin: 0;
  flex: 1;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .greetings-signature {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .greetings-signature {
    font-size: 0.875rem;
    padding-top: 0.875rem;
  }
}