/* ==========================================================================
   shared/portal.css — 「AI교육 포털」 화면 층
   guide/guide.css 와 같은 결이다. 새 쪽을 포털 모양으로 만들 때 이 파일을 쓴다.
   shared/site.css 의 규칙을 덮어쓰므로 site.css 뒤에 불러라.
   ========================================================================== */

:root {
  --p-navy: #16233A;
  --p-navy2: #12203A;
  --p-blue: #1877E6;
  --p-blue-dark: #0B5FC0;
  --p-blue-soft: #2A7DE1;
  --p-sky: #EEF5FF;
  --p-muted: #5D6C80;
  --p-muted2: #78889C;
  --p-border: #E6ECF3;
  --p-border2: #E8EDF4;
  --p-shadow: 0 1px 3px rgba(20, 50, 90, .06);
  --p-max: 1560px;
}

body.portal {
  min-width: 320px;
  min-height: 100vh;
  background: linear-gradient(180deg, #F8FBFF 0%, #EEF4FB 45%, #E9F0FA 100%);
  color: var(--p-navy);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

.portal a {
  color: inherit;
  text-decoration: none;
}

.portal button,
.portal input {
  font: inherit;
}

.portal [hidden] {
  display: none !important;
}

.p-wrap {
  width: 100%;
  max-width: var(--p-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
}

/* ===== 헤더 ===== */

.p-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--p-border);
}

.p-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.p-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.p-brand img {
  height: 38px;
  width: auto;
}

.p-brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--p-navy);
  white-space: nowrap;
}

.p-nav {
  display: flex;
  align-items: center;
  gap: 14px 30px;
  flex-wrap: wrap;
}

.p-nav > a {
  color: #3D4A5C;
  font-size: 15px;
  font-weight: 600;
}

.p-nav > a:hover {
  color: var(--p-blue);
}

.p-nav > a.is-here {
  color: var(--p-blue);
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--p-blue);
}

.p-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p-blue);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(24, 119, 230, .28);
  white-space: nowrap;
}

.p-nav-cta:hover {
  background: var(--p-blue-dark);
}

.p-nav-cta svg {
  width: 17px;
  height: 17px;
  flex: none;
}

/* ===== 본문 틀 ===== */

.p-main {
  padding-top: 22px;
  padding-bottom: 34px;
}

.p-panel {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 26px 28px 28px;
  box-shadow: var(--p-shadow);
}

.p-panel h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: var(--p-navy2);
  letter-spacing: -1px;
}

/* ===== 히어로 ===== */

.p-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--p-sky);
  box-shadow: var(--p-shadow);
  min-height: 250px;
}

.p-hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
}

.p-hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.p-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    var(--p-sky) 0%,
    var(--p-sky) 30%,
    rgba(238, 245, 255, .9) 45%,
    rgba(238, 245, 255, .3) 62%,
    rgba(238, 245, 255, 0) 76%);
}

.p-hero-visual.is-empty::after {
  background: var(--p-sky);
}

.p-hero-copy {
  position: relative;
  padding: 34px 40px 32px;
  max-width: min(620px, 66%);
}

.p-hero-eyebrow {
  display: block;
  color: var(--p-blue-soft);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}

.p-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  color: #0F1D33;
  letter-spacing: -2px;
}

.p-hero-copy p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.6;
  color: #2C3B52;
  letter-spacing: -.4px;
}

/* ===== 두 칸 ===== */

.p-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

/* ===== 왼쪽: 회차 목록 ===== */

.p-find {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #DFE8F3;
  border-radius: 12px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

.p-find svg {
  flex: none;
  width: 21px;
  height: 21px;
  color: #7B8CA0;
}

.p-find input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--p-navy);
  background: transparent;
  padding: 12px 0;
  -webkit-appearance: none;
  appearance: none;
}

.p-find input::placeholder {
  color: #9AA6B6;
}

.p-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  cursor: pointer;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid var(--p-border);
  font-family: inherit;
}

.p-row:hover {
  border-color: #B9D5F8;
}

.p-row[aria-selected="true"] {
  background: #F4F9FF;
  border: 2px solid var(--p-blue);
  box-shadow: 0 2px 10px rgba(24, 119, 230, .12);
  padding: 15px 17px;
}

.p-row-no {
  flex: none;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  background: #EEF3FA;
  color: var(--p-muted);
  white-space: nowrap;
}

.p-row[aria-selected="true"] .p-row-no {
  background: #DCEBFF;
  color: #1A6FD0;
}

.p-row-copy {
  flex: 1;
  min-width: 0;
}

.p-row-copy b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--p-navy);
  letter-spacing: -.4px;
}

.p-row-copy span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #68788C;
  margin-top: 3px;
}

.p-row-date {
  flex: none;
  font-size: 14px;
  color: #8B9BB0;
  font-weight: 600;
  white-space: nowrap;
}

.p-row-arrow {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #EAF2FD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3F7CC4;
  font-size: 14px;
  font-weight: 700;
}

.p-empty-note {
  margin-top: 12px;
  border: 1px dashed #C9D8EA;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #7B8CA0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* ===== 오른쪽: 회차 상세 ===== */

.p-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.p-chip {
  background: #E3EFFF;
  color: #1A6FD0;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
}

.p-detail-date {
  font-size: 15px;
  color: #7B8CA0;
  font-weight: 600;
}

.p-detail h2 {
  margin: 18px 0 12px;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 800;
  color: #0F1D33;
  letter-spacing: -1.2px;
}

.p-detail-lede {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-muted);
}

.p-detail h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--p-navy);
  letter-spacing: -.6px;
}

.p-res {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-res-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  background: #F2F7FF;
  border: 1px solid #E2ECFC;
  border-radius: 14px;
  padding: 16px 18px;
}

.p-res-icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #DCEBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-blue);
}

.p-res-icon svg {
  width: 26px;
  height: 26px;
}

.p-res-copy {
  flex: 1;
  min-width: 150px;
}

.p-res-copy b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--p-navy);
}

.p-res-copy span {
  display: block;
  font-size: 14px;
  color: #68788C;
  margin-top: 3px;
}

.p-res-open {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #DFE8F3;
  color: #2C4360;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
}

.p-res-open:hover {
  border-color: var(--p-blue);
  color: var(--p-blue);
}

.p-res-open svg {
  width: 16px;
  height: 16px;
}

.p-notice {
  margin-top: 20px;
  background: var(--p-sky);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-start;
}

.p-notice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.p-notice-head span:first-child {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--p-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
}

.p-notice-head b {
  font-size: 16px;
  font-weight: 800;
  color: var(--p-navy);
}

.p-notice ul {
  flex: 1;
  min-width: 220px;
  margin: 0;
  padding-left: 18px;
  color: #4D5D72;
  font-size: 15px;
  line-height: 1.8;
}

/* ===== 표 ===== */

.p-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.p-table th,
.p-table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--p-border2);
}

.p-table thead th {
  font-size: 14px;
  color: var(--p-muted2);
  font-weight: 700;
}

.p-table tbody th {
  font-weight: 700;
  color: var(--p-navy);
  white-space: nowrap;
}

.p-table tbody td {
  color: var(--p-muted);
}

.p-note {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--p-muted2);
}

/* ===== 푸터 ===== */

.p-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--p-border);
}

.p-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 13px;
  color: #8494A8;
}

.p-footer-grid img {
  height: 24px;
  width: auto;
}

.p-footer-grid a {
  color: #8494A8;
}

.p-footer-grid a:hover {
  color: var(--p-blue);
}

.p-footer-grid strong {
  font-weight: 700;
  color: var(--p-muted);
}

/* ==========================================================================
   좁은 화면
   ========================================================================== */

@media (max-width: 900px) {
  .p-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .p-hero-visual {
    position: relative;
    order: -1;
    height: 150px;
    flex: none;
  }

  .p-hero-visual::after {
    background: linear-gradient(180deg, rgba(238, 245, 255, 0) 45%, var(--p-sky) 100%);
  }

  .p-hero-copy {
    max-width: 100%;
    padding: 22px 22px 26px;
  }
}

@media (max-width: 767px) {
  .p-wrap {
    padding-right: 18px;
    padding-left: 18px;
  }

  .p-header-inner {
    min-height: 0;
    gap: 12px 18px;
  }

  .p-brand img {
    height: 32px;
  }

  .p-brand-name {
    font-size: 20px;
  }

  .p-nav {
    width: 100%;
    gap: 12px 20px;
  }

  .p-nav > a {
    font-size: 14px;
  }

  .p-nav-cta {
    margin-left: auto;
    padding: 10px 14px;
  }

  .p-panel {
    border-radius: 16px;
    padding: 20px 18px;
  }

  .p-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .p-row {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .p-row-copy {
    flex-basis: 100%;
    order: 3;
  }

  .p-res-open {
    width: 100%;
    justify-content: center;
  }

  .p-footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal * {
    transition: none !important;
  }
}

@media print {
  .p-header,
  .p-footer,
  .p-hero,
  .p-find,
  .skip {
    display: none !important;
  }

  body.portal {
    background: #FFFFFF;
  }

  .p-two {
    display: block;
  }

  .p-panel {
    box-shadow: none;
    border: 1px solid #CCCCCC;
    break-inside: avoid;
  }
}

/* ==========================================================================
   요청 게시판 — 2026-09-10 목업 「요청하기」 적용
   색과 모양은 위 포털 층에 이미 있는 것을 그대로 쓴다.
   ========================================================================== */

.r-hero {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 26px 30px;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(20, 50, 90, .06);
}

.r-hero-copy {
  flex: 1;
  min-width: 280px;
}

.r-eyebrow {
  color: #2A7DE1;
  font-size: 15px;
  font-weight: 700;
}

.r-hero-copy h1 {
  margin: 7px 0 8px;
  color: #0F1D33;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.15;
}

.r-lede {
  color: #4A5A70;
  font-size: 16.5px;
  line-height: 1.6;
}

.r-lede + .r-lede {
  margin-top: 10px;
}

.r-stats {
  display: flex;
  flex: none;
  gap: 14px;
  flex-wrap: wrap;
}

.r-stat {
  min-width: 104px;
  padding: 16px 22px;
  border-radius: 14px;
  background: #EEF5FF;
  text-align: center;
}

.r-stat-done {
  background: #EAF7EF;
}

.r-stat b {
  display: block;
  color: var(--g-blue, #1877E6);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.r-stat-done b {
  color: #1F9D55;
}

.r-stat span {
  display: block;
  margin-top: 2px;
  color: #5D6C80;
  font-size: 13.5px;
  font-weight: 600;
}

/* 거르개 줄 */
.r-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 14px;
}

.r-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.r-filters button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #DFE8F3;
  border-radius: 999px;
  background: #FFFFFF;
  color: #3D4A5C;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.r-filters button[aria-pressed="true"] {
  border-color: #1877E6;
  background: #1877E6;
  color: #FFFFFF;
}

.r-new {
  display: flex;
  min-height: 44px;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  background: #1877E6;
  color: #FFFFFF;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(24, 119, 230, .28);
}

.r-new:hover {
  background: #0B5FC0;
}

.r-new svg {
  width: 17px;
  height: 17px;
}

/* 새 요청 쓰기 */
.r-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding: 22px 24px;
  border: 2px solid #1877E6;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 8px 28px rgba(24, 119, 230, .14);
}

.r-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.r-form-head h2 {
  color: #16233A;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.r-close {
  display: flex;
  padding: 4px;
  border: 0;
  background: none;
  color: #8494A8;
  cursor: pointer;
}

.r-field > label,
.r-legend {
  display: block;
  margin-bottom: 9px;
  color: #16233A;
  font-size: 14.5px;
  font-weight: 700;
}

.r-field input,
.r-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #DFE8F3;
  border-radius: 12px;
  color: #16233A;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
}

.r-field textarea {
  resize: vertical;
}

.r-field input:focus,
.r-field textarea:focus {
  border-color: #1877E6;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(24, 119, 230, .14);
}

.r-tagpick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.r-tagpick button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #DFE8F3;
  border-radius: 999px;
  background: #FFFFFF;
  color: #3D4A5C;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.r-tagpick button[aria-pressed="true"] {
  border-color: #1877E6;
  background: #EEF5FF;
  color: #1877E6;
  font-weight: 700;
}

.r-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.r-submit {
  min-height: 44px;
  padding: 13px 26px;
  border: 0;
  border-radius: 12px;
  background: #1877E6;
  color: #FFFFFF;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.r-submit[disabled] {
  background: #C3D6EC;
  cursor: not-allowed;
}

.r-cancel {
  min-height: 44px;
  padding: 13px 22px;
  border: 1px solid #DFE8F3;
  border-radius: 12px;
  background: #FFFFFF;
  color: #5D6C80;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.r-hint {
  color: #8494A8;
  font-size: 14px;
}

/* 만들어진 요청 문장 */
.r-made {
  padding: 16px 18px;
  border: 1px solid #DFE8F3;
  border-radius: 14px;
  background: #F7FAFD;
}

.r-made h3 {
  color: #16233A;
  font-size: 16px;
  font-weight: 800;
}

.r-made pre {
  margin: 10px 0 12px;
  color: #23456F;
  font: inherit;
  font-size: 15.5px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* 요청 목록 */
.r-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(20, 50, 90, .06);
}

.r-vote {
  display: flex;
  width: 58px;
  flex: none;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 11px 0;
  border: 1px solid #DFE8F3;
  border-radius: 12px;
  background: #FFFFFF;
  color: #5D6C80;
  font: inherit;
  cursor: pointer;
}

.r-vote[aria-pressed="true"] {
  border-color: #1877E6;
  background: #EEF5FF;
  color: #1877E6;
}

.r-vote b {
  font-size: 17px;
  font-weight: 800;
}

.r-item-main {
  flex: 1;
  min-width: 220px;
}

.r-pills {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.r-status,
.r-tag {
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.r-tag {
  background: #F2F6FB;
  color: #5D6C80;
  font-weight: 600;
}

.r-status-검토 {
  background: #FFF3E3;
  color: #B06A12;
}

.r-status-준비 {
  background: #E7F0FF;
  color: #1A6FD0;
}

.r-status-해결 {
  background: #E6F5EC;
  color: #18804A;
}

.r-item-main h2 {
  margin: 9px 0 5px;
  color: #16233A;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: pretty;
}

.r-body {
  color: #5D6C80;
  font-size: 15.5px;
  line-height: 1.6;
  text-wrap: pretty;
}

.r-meta {
  margin-top: 10px;
  color: #8494A8;
  font-size: 13.5px;
}

.r-answer {
  display: flex;
  flex: 1 1 100%;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #F7FAFD;
}

.r-answer-mark {
  display: flex;
  width: 26px;
  height: 26px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1877E6;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
}

.r-answer p {
  flex: 1;
  min-width: 0;
  color: #33455C;
  font-size: 15px;
  line-height: 1.6;
}

.r-empty {
  padding: 40px 24px;
  border: 1px dashed #DFE8F3;
  border-radius: 16px;
  background: #FFFFFF;
  color: #5D6C80;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* 노션 폼 자리 — 주소가 없을 때는 빈 상자를 크게 벌리지 않는다 */
.portal .formbox {
  min-height: 0;
  padding: 16px 18px;
}

.portal .formbox.is-live {
  min-height: 520px;
  padding: 0;
}

/* 주의 상자 */
.r-warn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid #F7E0BD;
  border-radius: 16px;
  background: #FFF8EE;
}

.r-warn-mark {
  display: flex;
  width: 28px;
  height: 28px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F08C25;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 800;
}

.r-warn b {
  color: #A35A0D;
  font-size: 16px;
  font-weight: 800;
}

.r-warn p {
  margin-top: 3px;
  color: #7A5C33;
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .r-hero {
    padding: 22px 18px;
  }

  .r-new {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .r-item {
    gap: 14px;
    padding: 18px 16px;
  }
}
