/**
 * GnT — PR page styles
 * All styles scoped under .pr-page
 */

.pr-page .pr-content-section {
  padding-block: 78px 80px;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 120px;
}

@media (max-width: 1024px) {
  .pr-page .pr-content-section {
    padding-block: 60px 64px;
    padding-inline: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pr-page .pr-content-section {
    padding-block: 48px 56px;
    padding-inline: 1.25rem;
  }
}

/* --- PR promo list section (admin-driven) --- */
.pr-page .pr-promo-section,
.pr-page .pr-news-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pr-page .pr-promo-toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pr-page .pr-promo-toolbar__count {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: #151515;
}

.pr-page .pr-promo-toolbar__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.pr-page .pr-promo-toolbar__select {
  min-height: 50px;
  width: 150px;
  padding-inline: 0.75rem;
  font-family: var(--font-pretendard);
  font-size: 15px;
  color: #151515;
  background-color: #fff;
  border: 1px solid #d9dfe9;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5c5c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.pr-page .pr-promo-toolbar__search {
  min-height: 50px;
  width: 250px;
  padding-inline: 0.75rem;
  font-family: var(--font-pretendard);
  font-size: 15px;
  color: #151515;
  background-color: #fff;
  border: 1px solid #d9dfe9;
}

.pr-page .pr-promo-toolbar__search::placeholder {
  color: #8c8c8c;
}

.pr-page .pr-promo-toolbar__btn {
  min-height: 50px;
  width: 100px;
  padding-inline: 1.25rem;
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background-color: #cf0006;
  border: none; 
  cursor: pointer;
  transition: background-color 0.2s;
}

.pr-page .pr-promo-toolbar__btn:hover {
  background-color: #b00005;
}

/* --- PR promo grid + pagination (admin-driven) --- */
.pr-page .pr-promo-list-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pr-page .pr-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pr-page .pr-promo-grid .pr-promo-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
}

.pr-page .pr-promo-grid .pr-promo-card__img-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  background-color: #f6f6f6;
  overflow: hidden;
}

.pr-page .pr-promo-grid .pr-promo-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-page .pr-promo-grid .pr-promo-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
}

.pr-page .pr-promo-grid .pr-promo-card__title {
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #151515;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-page .pr-promo-grid .pr-promo-card__date {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: #8c8c8c;
}

.pr-page .pr-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pr-page .pr-pagination__prev,
.pr-page .pr-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  font-size: 0;
  color: #5c5c5c;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.pr-page .pr-pagination__prev:hover,
.pr-page .pr-pagination__next:hover {
  background-color: #f6f6f6;
  color: #151515;
}

.pr-page .pr-pagination__prev svg,
.pr-page .pr-pagination__next svg {
  width: 20px;
  height: 20px;
}

.pr-page .pr-pagination__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pr-page .pr-pagination__item {
  display: block;
}

.pr-page .pr-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 0.25rem;
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 15px;
  color: #5c5c5c;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.pr-page .pr-pagination__link:hover {
  background-color: #f6f6f6;
  color: #151515;
}

.pr-page .pr-pagination__link--active {
  background-color: #cf0006;
  color: #fff;
  border-color: #cf0006;
}

.pr-page .pr-pagination__link--active:hover {
  background-color: #b00005;
  color: #fff;
  border-color: #b00005;
}

@media (max-width: 1024px) {
  .pr-page .pr-promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pr-page .pr-promo-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pr-page .pr-promo-list-section {
    gap: 2rem;
  }

  .pr-page .pr-promo-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .pr-page .pr-promo-toolbar__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    gap: 0.5rem;
    margin: 0;
  }

  .pr-page .pr-promo-toolbar__select,
  .pr-page .pr-promo-toolbar__search {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Full-width button under input — same width as fields, no centered narrow chip */
  .pr-page .pr-promo-toolbar__btn {
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-self: stretch;
    box-sizing: border-box;
  }
}

/* --- PR news list section (언론홍보, Figma 260-2622, admin-driven) --- */
.pr-page .pr-news-list-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pr-page .promo-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #000000;
}

.pr-page .promo-news-list__item {
  border-bottom: 1px solid #000000;
}

.pr-page .promo-news-list__link {
  display: grid;
  grid-template-columns: auto 200px 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.15s ease;
  box-sizing: border-box;
}

.pr-page .promo-news-list__link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.pr-page .promo-news-list__num {
  font-family: var(--font-pretendard);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #C4C4C4;
  padding: 0 40px;
  text-align: left;
}

.pr-page .promo-news-list__thumb-wrap {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #D9D9D9;
}

.pr-page .promo-news-list__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pr-page .promo-news-list__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  padding: 0 40px 0 52px;
}

.pr-page .promo-news-list__title {
  font-family: var(--font-pretendard);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.193359375;
  color: #333333;
  margin: 0;
  padding: 6px 0 0;
}

.pr-page .promo-news-list__desc {
  font-family: var(--font-pretendard);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #656565;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-page .promo-news-list__date {
  font-family: var(--font-pretendard);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.193359375;
  color: #A9A9A9;
  padding: 12px 0 0;
}

.pr-page .promo-news-list__views {
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.193359375;
  color: #999999;
  padding: 0 40px;
  text-align: right;
}

.pr-page .promo-news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 0 0;
}

.pr-page .promo-news-pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-page .promo-news-pagination__link,
.pr-page .promo-news-pagination__prev,
.pr-page .promo-news-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: var(--font-pretendard);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #474747;
  background-color: transparent;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.pr-page .promo-news-pagination__link--active {
  background-color: #E60012;
  color: #FFFFFF;
}

.pr-page .promo-news-pagination__prev,
.pr-page .promo-news-pagination__next {
  color: #A5A5A5;
  font-size: 1rem;
}

.pr-page .promo-news-pagination__link:hover:not(.promo-news-pagination__link--active),
.pr-page .promo-news-pagination__prev:hover,
.pr-page .promo-news-pagination__next:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

/* PR Media news list — mobile stacked layout (≤768px; desktop/tablet unchanged) */
@media (max-width: 768px) {
  .pr-page .promo-news-list__link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "thumb thumb thumb"
      "title title title"
      "desc desc desc"
      "num date views";
    align-items: start;
    column-gap: 0.75rem;
    row-gap: 0.5rem;
    padding: 1rem 0;
    min-width: 0;
  }

  .pr-page .promo-news-list__body {
    display: contents;
  }

  .pr-page .promo-news-list__thumb-wrap {
    grid-area: thumb;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
  }

  .pr-page .promo-news-list__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pr-page .promo-news-list__num {
    grid-area: num;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: #a9a9a9;
    padding: 0.35rem 0 0;
    min-width: 0;
  }

  .pr-page .promo-news-list__title {
    grid-area: title;
    font-size: 1.125rem;
    line-height: 1.35;
    padding: 0.35rem 0 0;
    margin: 0;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  .pr-page .promo-news-list__desc {
    grid-area: desc;
    font-size: 0.75rem;
    line-height: 1.55;
    margin: 0;
    padding: 0.35rem 0 0;
    -webkit-line-clamp: 3;
    min-width: 0;
  }

  .pr-page .promo-news-list__date {
    grid-area: date;
    padding: 0.35rem 0 0;
    min-width: 0;
    word-wrap: break-word;
  }

  .pr-page .promo-news-list__views {
    grid-area: views;
    padding: 0.35rem 0 0;
    text-align: right;
    font-size: 0.75rem;
    color: #a9a9a9;
  }

  .pr-page .promo-news-pagination {
    padding: 1rem 0 0;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pr-page .promo-news-pagination__link,
  .pr-page .promo-news-pagination__prev,
  .pr-page .promo-news-pagination__next {
    min-width: 40px;
    min-height: 40px;
    width: auto;
    height: auto;
    padding: 0 10px;
  }
}

/* --- PR detail page (Press Release single article) --- */
.pr-page .pr-detail-section {
  padding-block: 2rem 4rem;
}

.pr-page .pr-detail-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pr-page .pr-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pr-page .pr-detail__back {
  display: inline-block;
  font-family: var(--font-pretendard);
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.pr-page .pr-detail__back:hover {
  text-decoration: underline;
}

.pr-page .pr-detail__title {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  color: #101010;
  margin: 0 0 12px;
}

.pr-page .pr-detail__date {
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #666;
  text-align: center;
  margin: 0 0 32px;
}

.pr-page .pr-detail__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 32px;
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #666;
}

.pr-page .pr-detail__meta .pr-detail__date {
  margin: 0;
}

.pr-page .pr-detail__views {
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999999;
}

.pr-page .pr-detail__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pr-page .pr-detail__image-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-page .pr-detail-root .pr-detail__image-wrap {
  border: 1px solid #e5e5e5;
}

.pr-page .pr-detail__image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.pr-page .pr-detail__image-placeholder {
  width: 100%;
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-pretendard);
  font-size: 0.95rem;
  color: #999999;
}

.pr-page .pr-detail__youtube {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pr-page .pr-detail__youtube[hidden],
.pr-page .pr-detail__pdf[hidden] {
  display: none !important;
}

.pr-page .pr-detail__youtube-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 16px;
  overflow: hidden;
}

.pr-page .pr-detail__youtube-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pr-page .pr-detail__pdf {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background-color: #fafafa;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pr-page .pr-detail__pdf-label {
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}

.pr-page .pr-detail__pdf-name {
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  color: #666666;
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-all;
}

.pr-page .pr-detail__pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-pretendard);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #cf0006;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.pr-page .pr-detail__pdf-download:hover {
  background-color: #b00005;
}

.pr-page .pr-detail__content {
  font-family: var(--font-pretendard);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}

.pr-page .pr-detail__content :where(p, div, span, li, h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.pr-page .pr-detail__content img {
  max-width: 100%;
  height: auto;
}

.pr-page #pr-detail-root .pr-detail__title,
.pr-page #pr-detail-root .pr-detail__date {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  text-align: left;
}

.pr-page #pr-detail-root .pr-detail__image-wrap {
  max-width: 600px;
  margin-inline: 0;
}

.pr-page .pr-detail--not-found {
  text-align: center;
  padding: 3rem 1rem;
}

.pr-page .pr-detail__not-found-text {
  font-family: var(--font-pretendard);
  font-size: 1.5rem;
  color: #666;
  margin: 0 0 1.5rem;
}

.pr-page .pr-detail__footer {
  margin-top: 3rem;
  text-align: center;
}

.pr-page .pr-detail__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 0.5rem 1.75rem;
  font-family: var(--font-pretendard);
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  background-color: #f6f6f6;
  border-radius: 999px;
  text-decoration: none;
}

.pr-page .pr-detail__back-btn:hover {
  background-color: #e5e5e5;
}

@media (max-width: 768px) {
  .pr-page .pr-detail__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .pr-page .pr-detail__image-wrap {
    margin-bottom: 24px;
  }

  .pr-page .pr-detail__pdf {
    align-items: flex-start;
  }
}

.pr-page .pr-promo-grid .pr-promo-card[role="button"] {
  cursor: pointer;
}

/* ============================================================
   PR 공지사항 — table layout (Figma node 7482-838)
   ============================================================ */

.pr-page .pr-notice-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pr-page .pr-notice-table-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pr-page .pr-notice-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #111111;
}

.pr-page .pr-notice-table th,
.pr-page .pr-notice-table td {
  border-bottom: 1px solid #DDDDDD;
  font-family: var(--font-pretendard);
  font-size: 16px;
  line-height: 160%;
  color: #111111;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pr-page .pr-notice-table th {
  height: 50px;
  font-weight: 500;
}

.pr-page .pr-notice-table td {
  height: 55px;
  font-weight: 400;
}

.pr-page .pr-notice-table .col-num {
  width: 60px;
}

/* Header title cell: centered (Figma justifyContent: center) */
.pr-page .pr-notice-table thead .col-title {
  text-align: center;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
}

/* Data title cell: left-aligned with padding (Figma flex-start + padding 0 20px) */
.pr-page .pr-notice-table tbody .col-title {
  text-align: left;
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-page .pr-notice-table .col-author {
  width: 200px;
}

.pr-page .pr-notice-table .col-date {
  width: 200px;
}

.pr-page .pr-notice-table .col-views {
  width: 60px;
}

.pr-page .pr-notice-table tbody tr {
  transition: background-color 0.15s ease;
}

.pr-page .pr-notice-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.pr-page .pr-notice-table__link {
  color: inherit;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-page .pr-notice-table__link:hover {
  color: #E60012;
}

/* Notice empty state */
.pr-page .pr-notice-table__empty {
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--font-pretendard);
  font-size: 15px;
  color: #8c8c8c;
}

/* Notice pagination — circular pills (Figma: Frame 4 gap 20px, pills gap 8px) */
.pr-page .pr-notice-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
}

.pr-page .pr-notice-pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-page .pr-notice-pagination__link,
.pr-page .pr-notice-pagination__prev,
.pr-page .pr-notice-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-pretendard);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #474747;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.pr-page .pr-notice-pagination__link--active {
  background-color: #E60012;
  color: #FFFFFF;
}

.pr-page .pr-notice-pagination__link:hover:not(.pr-notice-pagination__link--active),
.pr-page .pr-notice-pagination__prev:hover,
.pr-page .pr-notice-pagination__next:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

/* Responsive — ≤768px */
@media (max-width: 768px) {
  .pr-page .pr-notice-table .col-author {
    display: none;
  }

  .pr-page .pr-notice-table .col-date {
    width: 100px;
    font-size: 13px;
  }

  .pr-page .pr-notice-table .col-num,
  .pr-page .pr-notice-table .col-views {
    width: 44px;
    font-size: 13px;
  }

  .pr-page .pr-notice-pagination {
    padding-top: 1rem;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pr-page .pr-notice-pagination__link,
  .pr-page .pr-notice-pagination__prev,
  .pr-page .pr-notice-pagination__next {
    min-width: 40px;
    min-height: 40px;
    width: auto;
    height: auto;
    padding: 0 10px;
  }
}
