:root {
  --pukaray-eggshell: #F5F3EB;
  --pukaray-auburn: #6E1E11;
  --pukaray-flame: #AA3522;
  --pukaray-gold: #34A853;
  --pukaray-green: #1A542A;
  --pukaray-black-bean: #0D2A15;
  --white: #F5F3EB;
  --line: rgba(13, 42, 21, 0.16);
  --soft: rgba(245, 243, 235, 0.56);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--pukaray-black-bean);
  background: var(--pukaray-eggshell);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  border: 0;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  color: var(--pukaray-black-bean);
  background: var(--soft);
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

button:hover,
a:hover {
  outline: 2px solid rgba(110, 30, 17, 0.2);
}

.primary {
  color: var(--white);
  background: var(--pukaray-auburn);
}

.danger {
  color: var(--white);
  background: var(--pukaray-flame);
}

.ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.muted,
.hint {
  color: rgba(13, 42, 21, 0.68);
}

.public-display {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  cursor: none;
}

.display-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(245, 243, 235, 0.45), transparent 26%),
    radial-gradient(circle at 88% 84%, rgba(52, 168, 83, 0.28), transparent 30%),
    var(--pukaray-eggshell);
}

.display-decor {
  position: fixed;
  z-index: 1;
  border-radius: 999px;
  opacity: 0.34;
  animation: display-float 8s ease-in-out infinite;
  pointer-events: none;
}

.decor-one {
  width: min(36vw, 390px);
  height: min(36vw, 390px);
  left: -13vw;
  top: 19vh;
  background: var(--pukaray-gold);
}

.decor-two {
  width: min(31vw, 340px);
  height: min(31vw, 340px);
  right: -12vw;
  bottom: 13vh;
  background: var(--pukaray-flame);
  animation-delay: -3s;
}

@keyframes display-float {
  50% {
    transform: translateY(-28px) scale(1.05);
  }
}

.display-shell {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 12vh minmax(0, 1fr) 7vh;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.6vw, 28px);
  padding: 1.1vh clamp(26px, 4.5vw, 62px);
}

.display-header img {
  width: min(34vw, 290px);
  height: 9.2vh;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  border-radius: 8px;
}

.display-brand {
  display: none;
  min-width: 0;
  gap: 0.6vh;
  flex: 1;
}

.display-brand strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 2.8vh, 44px);
  line-height: 1.04;
  color: var(--pukaray-auburn);
}

.display-brand span {
  font-size: clamp(16px, 1.55vh, 25px);
  font-weight: 800;
  color: rgba(13, 42, 21, 0.72);
}

.display-root {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(24px, 4.2vw, 56px);
}

.slide-shell {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.public-display[data-transition="slide"] .slide-shell {
  transform: translateX(7vw);
}

.public-display[data-transition="zoom"] .slide-shell {
  transform: scale(0.94);
}

.public-display[data-transition="dissolve"] .slide-shell {
  filter: blur(12px);
  transition: opacity 900ms ease, filter 900ms ease;
}

.slide-shell.visible {
  opacity: 1;
  transform: translateY(0);
}

.public-display[data-transition="slide"] .slide-shell.visible,
.public-display[data-transition="zoom"] .slide-shell.visible {
  transform: translateX(0) scale(1);
}

.public-display[data-transition="dissolve"] .slide-shell.visible {
  filter: blur(0);
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--pukaray-eggshell);
  isolation: isolate;
}

.public-display .slide {
  border: 10px solid rgba(245, 243, 235, 0.78);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(13, 42, 21, 0.18);
}

.public-display .slide-header {
  top: clamp(22px, 3vh, 48px);
}

.public-display .slide-header .slide-logo {
  display: none;
}

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.95;
}

.slide::before {
  width: min(36vw, 380px);
  height: min(36vw, 380px);
  right: -110px;
  top: 90px;
  background: var(--pukaray-gold);
}

.slide::after {
  width: min(24vw, 260px);
  height: min(24vw, 260px);
  left: -70px;
  bottom: 150px;
  background: var(--pukaray-green);
}

.slide-header {
  position: absolute;
  left: clamp(28px, 6.5vw, 80px);
  right: clamp(28px, 6.5vw, 80px);
  top: clamp(28px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2;
}

.slide-logo {
  width: min(56vw, 520px);
  max-height: 145px;
  object-fit: contain;
  object-position: left center;
}

.slide-logo.compact {
  width: min(44vw, 420px);
  filter: drop-shadow(0 8px 28px rgba(13, 42, 21, 0.2));
}

.slide-header span,
.slide-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.18vh, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pukaray-auburn);
}

.slide-classic,
.slide-split,
.slide-text-only,
.slide-event,
.slide-birthday,
.slide-emergency-body {
  height: 100%;
  padding: clamp(72px, 8vh, 140px) clamp(44px, 7vw, 86px) clamp(60px, 7vh, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(22px, 3vh, 48px);
}

.slide h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  font-size: clamp(42px, 7.4vh, 96px);
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--pukaray-auburn);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.slide h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  font-size: clamp(24px, 3.2vh, 46px);
  line-height: 1.08;
  color: var(--pukaray-green);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.slide-description,
.slide-info-block p {
  max-width: min(100%, 820px);
  margin: 0;
  font-size: clamp(23px, 2.8vh, 42px);
  line-height: 1.18;
  font-weight: 600;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.slide-media {
  width: 100%;
  min-height: 30vh;
  max-height: 40vh;
  border: 10px solid var(--white);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(245, 243, 235, 0.55);
}

.slide-media.tall {
  min-height: 44vh;
  max-height: 52vh;
}

.slide-image {
  width: 100%;
  height: 100%;
  display: block;
}

.slide-image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 34vh;
  background: var(--soft);
}

.slide-image-fallback img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.slide-info-block {
  padding: clamp(34px, 4vh, 64px);
  border-radius: 8px;
  background: var(--white);
  border-left: 16px solid var(--pukaray-flame);
  text-align: center;
}

.template-3 .slide-text-only {
  justify-content: center;
}

.template-3 h1 {
  font-size: clamp(46px, 7.8vh, 104px);
}

.template-4 .event-date {
  align-self: center;
  display: grid;
  gap: 10px;
  padding: 34px 42px;
  border-radius: 8px;
  background: var(--pukaray-gold);
  color: var(--pukaray-black-bean);
}

.event-date strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4.2vh, 64px);
  text-transform: uppercase;
}

.event-date span {
  font-size: clamp(30px, 3.6vh, 54px);
  font-weight: 800;
}

.template-5 {
  background: var(--pukaray-black-bean);
}

.template-5 .slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-photo-overlay {
  position: absolute;
  inset: auto clamp(40px, 7vw, 86px) clamp(56px, 7vh, 120px);
  display: grid;
  gap: 24px;
  padding: clamp(34px, 4vh, 64px);
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background: rgba(13, 42, 21, 0.78);
}

.slide-photo-overlay h1,
.slide-photo-overlay .slide-kicker,
.slide-photo-overlay .slide-description {
  color: var(--white);
}

.emergency {
  background: var(--pukaray-auburn);
  color: var(--white);
}

.emergency::before {
  background: var(--pukaray-gold);
}

.emergency h1,
.emergency .slide-kicker,
.emergency .slide-header span,
.emergency .slide-description {
  color: var(--white);
}

.slide-emergency-body {
  border: 22px solid var(--pukaray-gold);
}

.public-display .slide-kicker {
  align-self: center;
  max-width: 100%;
}

.public-display .slide-classic {
  justify-content: center;
}

.public-display .template-3 .slide-text-only,
.public-display .template-6 .slide-classic {
  padding-top: clamp(54px, 6vh, 100px);
}


.slide-character {
  position: absolute;
  right: clamp(20px, 4vw, 62px);
  bottom: clamp(12px, 2.8vh, 44px);
  z-index: 3;
  width: clamp(136px, 20vh, 300px);
  max-width: 34vw;
  max-height: 31vh;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 28px rgba(13, 42, 21, 0.24));
  pointer-events: none;
  animation: characterFloat 4.8s ease-in-out infinite;
}

.slide-character.compact {
  width: clamp(104px, 15vh, 210px);
  max-height: 23vh;
}

.has-character .slide-classic,
.has-character .slide-text-only,
.has-character .slide-event,
.has-character .slide-emergency-body {
  padding-bottom: clamp(150px, 18vh, 250px);
}

.has-character.template-2 .slide-split {
  padding-bottom: clamp(96px, 12vh, 150px);
}

.has-character.template-5 .slide-photo-overlay {
  bottom: clamp(150px, 16vh, 230px);
}

@keyframes characterFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.empty-slide {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 34px;
  padding: 90px;
  text-align: center;
}

.empty-brand img {
  width: min(76vw, 740px);
  max-height: 320px;
  object-fit: contain;
}

.empty-slide h1 {
  font-size: clamp(48px, 7vh, 94px);
}

.empty-slide p {
  margin: 0;
  font-size: clamp(28px, 3.2vh, 46px);
  font-weight: 700;
}

.display-clock {
  display: grid;
  justify-items: end;
  color: var(--pukaray-black-bean);
  min-width: min(44vw, 250px);
}

.display-clock strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.8vh, 54px);
}

.display-clock span {
  font-size: clamp(15px, 1.85vh, 28px);
  font-weight: 700;
  text-transform: capitalize;
}

.display-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(26px, 4.5vw, 62px);
  font-size: clamp(12px, 1.05vh, 18px);
  font-weight: 800;
  color: rgba(13, 42, 21, 0.76);
}

.display-dots {
  display: flex;
  gap: clamp(8px, 1vw, 15px);
  align-items: center;
}

.display-dots i {
  width: clamp(9px, 0.78vh, 14px);
  height: clamp(9px, 0.78vh, 14px);
  border-radius: 999px;
  background: rgba(13, 42, 21, 0.22);
  transition: transform 350ms ease, background 350ms ease;
}

.display-dots i.on {
  transform: scale(1.35);
  background: var(--pukaray-auburn);
}

.display-progress {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 6;
  width: 100vw;
  height: 6px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--pukaray-auburn);
}

.admin-body {
  min-height: 100vh;
  overflow-x: hidden;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--pukaray-eggshell);
}

.login-card,
.panel {
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 243, 235, 0.74);
}

.login-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.login-card h1,
.panel h1,
.page-heading h1,
.panel h2 {
  margin: 14px 0 8px;
  font-family: "Montserrat", sans-serif;
  color: var(--pukaray-auburn);
}

.login-card p {
  margin: 0 0 20px;
}

label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  color: var(--pukaray-black-bean);
}

textarea {
  resize: vertical;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.admin-logo {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar button {
  text-align: left;
}

.sidebar button.active {
  color: var(--white);
  background: var(--pukaray-auburn);
}

.admin-main {
  padding: 24px;
  animation: admin-enter 450ms ease both;
}

@keyframes admin-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.topbar div {
  display: grid;
  gap: 4px;
}

.topbar span {
  color: rgba(13, 42, 21, 0.68);
}

.toast {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 10;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--pukaray-auburn);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
}

.metric {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  border-top: 8px solid var(--pukaray-gold);
  animation: admin-enter 420ms ease both;
}

.metric strong {
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--pukaray-auburn);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
}

.panel-stack {
  display: grid;
  gap: 18px;
}

.panel {
  width: 100%;
}

.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.page-heading h1 {
  margin: 0;
}

.page-heading p {
  margin: 5px 0 0;
}

.publication-list {
  display: grid;
  gap: 12px;
}

.publication-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.publication-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 42, 21, 0.1);
  border-color: rgba(110, 30, 17, 0.32);
}

.publication-card[draggable="true"] {
  cursor: grab;
}

.publication-card[draggable="true"]:active {
  cursor: grabbing;
}

.publication-card h3 {
  margin: 8px 0;
  font-family: "Montserrat", sans-serif;
}

.publication-card p {
  margin: 0;
  color: rgba(13, 42, 21, 0.68);
}

.badge,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--pukaray-gold);
}

.status.published {
  color: var(--white);
  background: var(--pukaray-green);
}

.status.pending {
  background: var(--pukaray-gold);
}

.status.draft {
  color: var(--white);
  background: var(--pukaray-auburn);
}

.status.rejected {
  color: var(--white);
  background: var(--pukaray-flame);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  max-width: 540px;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: auto;
}

.image-current {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: rgba(13, 42, 21, 0.64);
}

.image-current img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}


.character-picker {
  display: grid;
  gap: 12px;
}

.character-picker-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.character-picker-head strong {
  color: var(--pukaray-auburn);
}

.character-picker-head span {
  color: rgba(13, 42, 21, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 10px;
}

.character-option {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(245, 243, 235, 0.74);
}

.character-option img {
  width: 72px;
  height: 62px;
  object-fit: contain;
}

.character-option small,
.character-option span {
  max-width: 100%;
  color: var(--pukaray-black-bean);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
}

.character-option.none span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: rgba(13, 42, 21, 0.64);
}

.character-option.selected {
  outline: 3px solid var(--pukaray-gold);
  border-color: var(--pukaray-auburn);
  background: var(--white);
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.preview-column {
  position: sticky;
  top: 20px;
}

.preview-column h2 {
  font-family: "Montserrat", sans-serif;
  color: var(--pukaray-auburn);
}

.phone-preview,
.mini-preview {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 10px solid var(--pukaray-black-bean);
  border-radius: 8px;
  background: var(--pukaray-eggshell);
}

.mini-preview {
  width: min(100%, 280px);
  margin: auto;
}

.is-preview .slide-header {
  top: 5%;
  left: 6%;
  right: 6%;
}

.is-preview .slide-logo {
  max-height: 32px;
}

.is-preview .slide-classic,
.is-preview .slide-split,
.is-preview .slide-text-only,
.is-preview .slide-event,
.is-preview .slide-emergency-body {
  padding: 22% 7% 8%;
  gap: 14px;
}

.is-preview h1 {
  font-size: 28px;
}

.is-preview h2 {
  font-size: 16px;
}

.is-preview .slide-description,
.is-preview .slide-info-block p {
  font-size: 14px;
}

.is-preview .slide-media {
  min-height: 150px;
  border-width: 4px;
}

.is-preview .slide-photo-overlay {
  left: 7%;
  right: 7%;
  bottom: 7%;
  padding: 18px;
  gap: 8px;
}

.user-row,
.log-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.log-list time,
.user-row span,
.log-list span {
  color: rgba(13, 42, 21, 0.68);
}

.display-admin-view iframe {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  border: 10px solid var(--pukaray-black-bean);
  border-radius: 8px;
  background: var(--pukaray-eggshell);
}

@media (max-width: 1100px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
  }

  .sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .metric-grid,
  .dashboard-grid,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .preview-column {
    position: static;
  }
}

@media (max-width: 720px) {
  .slide-character {
    right: 14px;
    bottom: 10px;
    width: clamp(96px, 17vh, 170px);
    max-width: 38vw;
    max-height: 24vh;
  }

  .has-character .slide-classic,
  .has-character .slide-text-only,
  .has-character .slide-event,
  .has-character .slide-emergency-body {
    padding-bottom: clamp(118px, 16vh, 170px);
  }
  .admin-main,
  .sidebar {
    padding: 14px;
  }

  .topbar,
  .page-heading,
  .publication-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .card-actions {
    justify-content: flex-start;
  }
}

.slide-birthday {
  justify-content: center;
}

.slide-birthday h1 {
  font-size: clamp(58px, 8.2vh, 112px);
}

.birthday-students {
  display: grid;
  gap: clamp(16px, 1.7vh, 28px);
}

.birthday-student {
  display: grid;
  grid-template-columns: clamp(78px, 8.4vh, 128px) 1fr;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  min-height: clamp(95px, 10vh, 145px);
  padding: clamp(16px, 2vh, 28px);
  border-radius: 8px;
  background: var(--white);
  border-left: 14px solid var(--pukaray-gold);
}

.birthday-avatar {
  width: clamp(78px, 8.4vh, 128px);
  height: clamp(78px, 8.4vh, 128px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pukaray-gold);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.3vh, 48px);
  font-weight: 800;
}

.birthday-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.birthday-student strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.7vh, 58px);
  line-height: 1.04;
  color: var(--pukaray-auburn);
}

.birthday-student span,
.birthday-student time {
  display: block;
  margin-top: 0.35vh;
  font-size: clamp(20px, 2.2vh, 34px);
  font-weight: 800;
  color: rgba(13, 42, 21, 0.72);
  text-transform: capitalize;
}

.birthday-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.birthday-row span {
  display: block;
  margin-top: 4px;
  color: rgba(13, 42, 21, 0.68);
}

.birthday-row div:last-child {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.is-preview .slide-birthday {
  padding: 22% 7% 8%;
  gap: 10px;
}

.is-preview .birthday-students {
  gap: 7px;
}

.is-preview .birthday-student {
  grid-template-columns: 42px 1fr;
  min-height: 52px;
  padding: 8px;
  border-left-width: 5px;
}

.is-preview .birthday-avatar {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.is-preview .birthday-student strong {
  font-size: 15px;
}

.is-preview .birthday-student span,
.is-preview .birthday-student time {
  font-size: 10px;
}
