:root {
  --kampus-bg: #f6f6f6;
  --kampus-dark: #0b1e28;
  --kampus-pink: #e83c66;
  --kampus-yellow: #fcc031;
  --kampus-text: #000000;
  --kampus-muted: #737373;
  --kampus-line: #d1d1d1;
  --kampus-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: clip;
  padding: 0;
  width: 100%;
}

body.kampus-page {
  background: var(--kampus-bg);
  color: var(--kampus-text);
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.kampus-main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-top: 24px;
}

.kampus-hero {
  order: 10;
}

.kampus-categories {
  order: 20;
}

.featured-section {
  order: 30;
}

.kampus-talks-section {
  order: 40;
}

.resources-section {
  order: 50;
}

.follow-section {
  order: 60;
}

.container-block {
  margin: 0 auto;
  width: min(1200px, calc(100% - 32px));
}

.kampus-hero {
  align-items: center;
  background: var(--kampus-dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 288px;
  padding: 48px 120px;
  text-align: center;
}

.kampus-hero-badge,
.resources-badge,
.follow-badge,
.faq-badge {
  align-items: center;
  background: var(--kampus-yellow);
  border-radius: 24px;
  color: #2b2108;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  gap: 8px;
  line-height: 20px;
  min-height: 32px;
  padding: 6px 12px;
}

.kampus-hero h1 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1.04px;
  line-height: 56px;
  margin: 24px 0 0;
}

.kampus-hero p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 24px 0 0;
  max-width: 760px;
}

.kampus-categories {
  align-items: center;
  display: flex;
  gap: 24px;
}

.kampus-categories h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
  min-width: 0;
}

.categories-scroller {
  align-items: center;
  cursor: grab;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
}

.categories-scroller.is-dragging {
  cursor: grabbing;
}

.categories-scroller::-webkit-scrollbar {
  display: none;
}

.category-chip {
  align-items: center;
  background: transparent;
  border: 1px solid var(--kampus-dark);
  border-radius: 24px;
  color: var(--kampus-dark);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  line-height: 20px;
  min-height: 48px;
  padding: 12px 24px;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
  white-space: nowrap;
}

.category-chip img {
  filter: brightness(0) saturate(100%);
  transition: filter 240ms ease;
}

.category-chip.is-active {
  background: var(--kampus-pink);
  border-color: var(--kampus-pink);
  color: #ffffff;
}

.category-chip.is-active img {
  filter: brightness(0) invert(1);
}

.featured-section h2,
.resources-section h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
  text-align: center;
}

.featured-grid {
  display: grid;
  gap: 48px 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.featured-grid-mobile {
  display: none;
}

.kampus-talks-section[hidden] {
  display: none !important;
}

.kampus-talks-section {
  padding-bottom: 40px;
}

.kampus-talks-section.is-switching {
  animation: kampusTalksEnter 320ms ease both;
}

.kampus-talks-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kampus-talks-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.kampus-talks-image-wrap {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(11, 30, 40, 0.12);
  height: 243px;
  overflow: hidden;
  width: 100%;
}

.kampus-talks-image-wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.kampus-talks-tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kampus-talks-tag {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  line-height: 20px;
  padding: 6px 12px;
}

.kampus-talks-tag-pink {
  background: #ffcad9;
  border-radius: 24px;
  color: #000000;
}

.kampus-talks-tag-gray {
  background: #f0f0f0;
  color: #000000;
  gap: 4px;
  min-height: 27px;
  padding: 3px 6px;
}

.kampus-talks-card p {
  color: #344b63;
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}

@keyframes kampusTalksEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.featured-card,
.resource-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-card figure,
.resource-card figure {
  border-radius: 12px;
  height: 180px;
  margin: 0;
  overflow: hidden;
}

.resource-card figure {
  height: 378px;
}

.featured-card figure > img,
.featured-card figure > picture,
.resource-card figure > img,
.resource-card figure > picture,
.consult-card figure > img,
.consult-card figure > picture {
  display: block;
  height: 100%;
  width: 100%;
}

.featured-card figure > img,
.featured-card figure > picture > img,
.resource-card figure > img,
.resource-card figure > picture > img,
.consult-card figure > img,
.consult-card figure > picture > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.consult-card figure > img,
.consult-card figure > picture > img {
  object-position: 50% 0;
}

.featured-meta {
  align-items: center;
  color: var(--kampus-muted);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 12px;
  line-height: 20px;
}

.meta-dot {
  background: var(--kampus-muted);
  border-radius: 50%;
  height: 2px;
  width: 2px;
}

.meta-time {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.featured-card h3,
.resource-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
}

.resource-card h3 {
  margin-top: 6px;
}

.resource-card-link {
  color: inherit;
  min-width: 0;
  text-decoration: none;
}

.resource-card-link:hover .kampus-hot-title span {
  color: var(--kampus-pink);
}

.kampus-popular-heading .kampus-heading-flame,
.kampus-hot-title .kampus-title-flame {
  display: inline-block;
  flex: 0 0 auto;
  margin-left: 8px;
  vertical-align: -0.12em;
}

.kampus-hot-title .kampus-title-flame {
  height: 24px;
  width: 24px;
}

.kampus-popular-heading .kampus-heading-flame {
  height: 30px;
  width: 30px;
}

.kampus-popular-title,
.kampus-popular-title span {
  display: inline;
}

.kampus-popular-title span + span {
  margin-left: 0.25em;
}

.featured-tag {
  align-items: center;
  border-radius: 24px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  min-height: 32px;
  padding: 4px 10px;
  width: fit-content;
}

.tag-yellow {
  background: var(--kampus-yellow);
  color: #000000;
}

.tag-pink {
  background: var(--kampus-pink);
  color: #ffffff;
}

.tag-dark {
  background: var(--kampus-dark);
  color: #ffffff;
}

.resources-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resources-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.resource-card-detailed {
  gap: 12px;
}

.resource-inline-note {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.inline-note-icon {
  align-items: center;
  background: var(--kampus-pink);
  border-radius: 12px;
  color: #ffffff;
  display: inline-flex;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.resource-inline-note strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
}

.resource-card p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.follow-section {
  background:
    linear-gradient(135deg, #173845 0%, #235462 100%);
  padding: 44px 0;
}

.follow-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.follow-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.follow-content .follow-badge {
  align-self: flex-start;
  width: fit-content;
}

.follow-content h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
}

.follow-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  max-width: 520px;
}

.follow-form {
  gap: 12px;
}

.follow-form .form-row {
  column-gap: 12px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

.follow-form .form-row > label {
  max-width: none !important;
  min-width: 0;
  width: 100% !important;
}

.follow-form .form-row > label:last-child {
  justify-self: end;
  width: calc(100% - 8px) !important;
}

.follow-form .form-row > label:first-child input,
.follow-form .form-row > label:last-child input,
.follow-form label:last-of-type input {
  height: 40px;
  min-height: 40px;
  padding: 10px 12px;
}

.follow-form,
.contact-form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.follow-form label,
.contact-form-card label {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
  line-height: 20px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.follow-form input,
.follow-form select,
.follow-form textarea,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  background: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  color: inherit;
  font-family: "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 40px;
  padding: 10px 12px;
  width: 100%;
}

.follow-form input::placeholder,
.follow-form textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #888888;
}

.follow-form input {
  min-height: 40px;
}

.follow-form button,
.contact-form-card button {
  align-items: center;
  background: var(--kampus-pink);
  border: 0;
  border-radius: 64px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  line-height: 28px;
  min-height: 52px;
  padding: 12px 24px;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.follow-form button img {
  height: 18px;
  width: 18px;
}

.follow-form p {
  color: #f6f6f6;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  text-align: center;
}

.faq-contact-section {
  display: grid;
  gap: 64px 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-intro .faq-badge {
  align-self: flex-start;
  width: fit-content;
}

.faq-intro h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
  max-width: 560px;
}

.faq-intro p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  max-width: 560px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  min-height: var(--faq-list-stable-height, auto);
  overflow-anchor: none;
}

.kampus-faq-item {
  border-bottom: 1px solid var(--kampus-line);
  overflow: hidden;
  transition: background-color 260ms ease;
}

.kampus-faq-item:last-child {
  border-bottom: 0;
}

.kampus-faq-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 28px;
  padding: 24px;
  text-align: left;
  width: 100%;
}

.kampus-faq-trigger span {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

.kampus-faq-icon {
  flex: 0 0 auto;
  transform: rotate(0deg);
  transition: transform 460ms cubic-bezier(0.33, 0, 0.2, 1), opacity 260ms ease;
}

.kampus-faq-item.is-active .kampus-faq-icon {
  transform: rotate(180deg);
}

.kampus-faq-panel {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 760ms cubic-bezier(0.33, 0, 0.2, 1),
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.33, 0, 0.2, 1);
  will-change: max-height, opacity, transform;
}

.kampus-faq-item.is-active .kampus-faq-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.kampus-faq-panel-inner {
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3125px;
  line-height: 26px;
  opacity: 0;
  padding: 16px 20px 24px;
  transform: translate3d(0, -10px, 0);
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.kampus-faq-panel-inner::before {
  background: #1f1f1f;
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 16px;
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.kampus-faq-item.is-active .kampus-faq-panel-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 90ms;
}

.kampus-faq-item.is-active .kampus-faq-panel-inner::before {
  opacity: 0.52;
  transform: scaleX(1);
}

.contact-panel {
  background: var(--kampus-pink);
  border-radius: 12px;
  display: grid;
  gap: 48px;
  grid-column: 1 / -1;
  grid-template-columns: 446px minmax(0, 1fr);
  padding: 64px;
}

.consult-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-card figure {
  border-radius: 12px;
  height: 191px;
  margin: 0;
  overflow: hidden;
}

.consult-card h3 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.96px;
  line-height: 56px;
  margin: 0;
}

.consult-card h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
}

.consult-card p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.consult-btn {
  align-items: center;
  border-radius: 64px;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  line-height: 28px;
  min-height: 44px;
  padding: 8px 24px;
  width: 100%;
}

.consult-btn-primary {
  background: #ffffff;
  color: var(--kampus-dark);
}

.consult-btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.consult-btn-label-mobile {
  display: none;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  color: #000000;
  gap: 24px;
  padding: 24px;
}

.contact-form-card label {
  color: #000000;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  border-color: #d1d1d1;
  color: #000000;
}

.phone-row {
  display: grid;
  gap: 6px;
  grid-template-columns: 79px minmax(0, 1fr);
}

.phone-row select,
.contact-form-card select {
  appearance: none;
  background-image: url("../img/icon-chevron-down.svg");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 36px;
}

.contact-form-card textarea {
  min-height: 113px;
  resize: vertical;
}

.contact-form-note {
  align-items: center;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  gap: 4px;
  letter-spacing: -0.1504px;
  line-height: 20px;
  margin: 0;
}

.kampus-page .site-footer {
  margin-top: 0;
}

.kampus-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kampus-delay, 0ms);
}

.kampus-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .featured-card,
  .resource-card,
  .consult-card figure {
    transition:
      transform 280ms ease,
      box-shadow 280ms ease,
      filter 280ms ease;
  }

  .featured-card:hover,
  .resource-card:hover {
    transform: translate3d(0, -4px, 0);
  }

  .featured-card:hover figure,
  .resource-card:hover figure,
  .consult-card figure:hover {
    box-shadow: 0 16px 28px rgba(11, 30, 40, 0.16);
    filter: saturate(1.02);
  }

  .category-chip:hover {
    box-shadow: 0 10px 16px rgba(11, 30, 40, 0.12);
    transform: translate3d(0, -1px, 0);
  }

  .follow-form button:hover,
  .contact-form-card button:hover,
  .consult-btn:hover {
    box-shadow: 0 12px 20px rgba(232, 60, 102, 0.24);
    transform: translate3d(0, -2px, 0);
  }
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kampus-talks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card-detailed {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}

@media (max-width: 960px) {
  .kampus-main {
    gap: 40px;
    padding-top: 16px;
  }

  .kampus-hero {
    min-height: 208px;
    padding: 24px 16px;
  }

  .kampus-hero h1 {
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 36px;
    margin-top: 16px;
  }

  .kampus-hero p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
    max-width: 311px;
  }

  .kampus-categories {
    gap: 0;
    width: 100%;
  }

  .kampus-categories h2 {
    display: none;
  }

  .categories-scroller {
    gap: 16px;
    width: 100%;
  }

  .category-chip {
    font-size: 14px;
    font-weight: 600;
    min-height: 40px;
    padding: 8px 16px;
  }

  .featured-section h2,
  .resources-section h2,
  .faq-intro h2 {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .featured-grid {
    display: none;
  }

  .featured-grid-mobile {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .featured-card h3,
  .resource-card h3 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
  }

  .resources-heading {
    gap: 12px;
  }

  .kampus-popular-heading {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .kampus-popular-title {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
  }

  .kampus-popular-title span {
    display: block;
  }

  .kampus-popular-title span + span {
    margin-left: 0;
  }

  .kampus-popular-heading .kampus-heading-flame {
    margin-left: 8px;
  }

  .resources-grid {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .kampus-talks-grid {
    grid-template-columns: 1fr;
  }

  .kampus-talks-section {
    padding-bottom: 28px;
  }

  .kampus-talks-image-wrap {
    height: 220px;
  }

  .kampus-talks-card p {
    font-size: 18px;
    line-height: 28px;
  }

  .resource-card figure {
    height: 343px;
  }

  .resource-card-detailed .resource-inline-note,
  .resource-card-detailed p {
    display: none;
  }

  .follow-section {
    padding: 32px 0;
  }

  .follow-inner {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .follow-content {
    align-items: center;
    text-align: center;
  }

  .follow-content .follow-badge {
    align-self: center;
  }

  .follow-content h2 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
  }

  .follow-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .follow-form button {
    font-size: 18px;
    line-height: 28px;
  }

  .follow-form button img {
    height: 16px;
    width: 16px;
  }

  .faq-contact-section {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .faq-intro {
    align-items: center;
    text-align: center;
  }

  .faq-intro .faq-badge {
    align-self: center;
  }

  .faq-intro p {
    font-size: 16px;
    line-height: 24px;
  }

  .kampus-faq-item {
    border-bottom: 1px solid var(--kampus-line);
  }

  .kampus-faq-item.is-active {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }

  .kampus-faq-trigger {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 16px 0;
  }

  .kampus-faq-panel-inner {
    color: #454545;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0;
    line-height: 24px;
    padding: 12px 0 16px;
  }

  .kampus-faq-panel-inner::before {
    margin-bottom: 12px;
  }

  .contact-panel {
    border-radius: 12px;
    gap: 24px;
    padding: 16px;
  }

  .consult-card figure {
    height: 144px;
  }

  .consult-card h3 {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .consult-card h4 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
  }

  .consult-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .consult-btn {
    font-size: 18px;
    line-height: 28px;
    min-height: 44px;
    padding: 8px 16px;
  }

  .consult-btn-label-desktop {
    display: none;
  }

  .consult-btn-label-mobile {
    display: inline;
  }

  .contact-form-card {
    padding: 16px;
  }

  .contact-form-card .form-row {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .contact-form-card button {
    font-size: 16px;
    line-height: 24px;
    min-height: 40px;
    padding: 8px 16px;
  }

  .contact-form-note {
    font-size: 12px;
    line-height: 18px;
  }

  .kampus-page .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container-block {
    width: calc(100% - 32px);
  }

  .form-row {
    gap: 8px;
  }

  .featured-card figure,
  .resource-card figure {
    height: 180px;
  }

  .resource-card figure {
    height: 343px;
  }

  .phone-row {
    grid-template-columns: 79px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kampus-reveal,
  .kampus-faq-panel,
  .kampus-faq-icon,
  .category-chip,
  .featured-card,
  .resource-card,
  .follow-form button,
  .contact-form-card button,
  .consult-btn {
    transition-duration: 1ms !important;
  }
}
