* {
  box-sizing: border-box;
}

body.resources-page-body {
  margin: 0;
  min-width: 1068px;
  overflow-x: auto;
  background: #f3efe7;
  font-family: "Community Pro", sans-serif;
}

.resources-page-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - var(--landing-topbar-height, 64px));
  padding: var(--landing-stage-padding-block, clamp(14px, 2.2vh, 24px)) var(--landing-stage-padding-inline, clamp(16px, 3vw, 40px));
  gap: var(--landing-stage-gap, clamp(14px, 2.2vh, 24px));
}

.resources-page-canvas {
  position: relative;
  width: 1024px;
  min-height: 712px;
}

.resources-page-title {
  margin: 0;
  color: #000;
  font-size: 39px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.resources-page-kicker {
  position: absolute;
  top: 14px;
  right: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: clamp(11px, 1.05vw, 18px);
  line-height: 1.15;
  text-align: right;
  font-weight: 700;
}

.resources-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.resource-card,
.champions-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible,
.champions-card:hover,
.champions-card:focus-visible {
  transform: translateY(-2px);
}

.resource-card {
  height: 184px;
  border-radius: 27px;
}

.resource-card h2 {
  position: absolute;
  left: 18px;
  top: 24px;
  z-index: 2;
  width: 250px;
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.resource-card-art {
  position: absolute;
  display: block;
}

.resource-card-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
}

.resource-card-challenge {
  background: #2c65bb;
}

.resource-card-challenge .resource-card-art {
  left: 0;
  top: 88px;
  width: 264px;
  height: auto;
}

.resource-card-academy {
  background: #6e6659;
}

.resource-card-academy .resource-card-art {
  left: 0;
  top: 3px;
  width: 100%;
  height: auto;
}

.resource-card-academy h2 {
  width: 215px;
}

.resource-card-prompts {
  background: #17407e;
}

.resource-card-art-prompts {
  left: 0;
  bottom: 0;
  width: 244px;
  height: 54px;
}

.champions-panel {
  position: relative;
  margin-top: 22px;
  height: 352px;
  padding: 48px 44px 38px;
  border-radius: 27px;
  background: #10172c;
}

.champions-title {
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.champions-kicker {
  position: absolute;
  top: 68px;
  right: 44px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1;
  text-align: right;
  font-weight: 700;
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.champions-card {
  height: 174px;
  border-radius: 20px;
  background: #2c65bb;
}

.champions-card-title {
  position: absolute;
  left: 18px;
  top: 24px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.champions-card-flag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.champions-card-flag-india {
  display: block;
  overflow: hidden;
}

.champions-card-flag-anz {
  display: block;
  overflow: hidden;
}

.champions-card-flag-asia {
  display: block;
  overflow: hidden;
}

.champions-card-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  color: #17407e;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.champions-card-btn-arrow {
  width: 34px;
  height: 34px;
  display: block;
}

.page-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page-logo {
  width: clamp(66px, 5.7vw, 109px);
  max-width: 100%;
  display: block;
  height: auto;
}
