.page-home {
  --home-radius: 24px;
  --home-radius-s: 14px;
  --home-gap: clamp(16px, 2.4vw, 28px);
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--body);
  overflow-x: clip;
}

.page-home .home-breadcrumb {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: .06em;
}
.page-home .home-breadcrumb__divider {
  color: var(--line);
}

.page-home .home-hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 clamp(36px, 5vw, 68px);
  overflow: hidden;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-home .home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  transform: scale(1.03);
}
.page-home .home-hero__bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 14, 23, .95) 12%, rgba(18, 26, 42, .78) 52%, rgba(123, 92, 255, .26) 100%);
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
}
.page-home .home-hero__intro {
  max-width: 820px;
}
.page-home .home-hero__tag {
  display: inline-block;
}
.page-home .home-hero__title {
  margin: 16px 0;
  font-family: var(--heading);
  font-size: clamp(30px, 5.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--text);
  text-wrap: balance;
}
.page-home .home-hero__desc {
  max-width: 640px;
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--muted);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-home .home-hero__collage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  margin-top: clamp(28px, 4.5vw, 52px);
}

.page-home .home-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 88% -8%, rgba(0, 163, 255, .16), transparent 52%),
    linear-gradient(160deg, rgba(18, 26, 42, .9), rgba(18, 26, 42, .52));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  min-height: 0;
}
.page-home .home-hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 42%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(0, 163, 255, .16), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .3s ease;
}
.page-home .home-hero-card:hover::after,
.page-home .home-hero-card:focus-visible::after {
  left: 118%;
}
.page-home .home-hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .home-hero-card__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.page-home .home-hero-card__value {
  margin: 14px 0 6px;
  font-family: var(--mono);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.page-home .home-hero-card__value em {
  font-style: normal;
  font-size: .62em;
  color: var(--green);
  margin-left: 2px;
}
.page-home .home-hero-card__unit {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.page-home .home-hero-card__hint {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--muted);
}

.page-home .home-hero-card--calendar {
  border-radius: 28px var(--home-radius-s) 28px 14px;
  border-color: rgba(0, 163, 255, .38);
  background:
    radial-gradient(110% 90% at 76% -6%, rgba(123, 92, 255, .34), transparent 58%),
    linear-gradient(160deg, rgba(18, 26, 42, .94), rgba(18, 26, 42, .6));
  gap: 12px;
}
.page-home .home-hero-card--calendar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--blue), var(--green) 70%, var(--purple));
}

.page-home .home-calendar-ring {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 22px);
  padding: 6px 0;
}
.page-home .home-calendar-ring__canvas {
  position: relative;
  flex: none;
  width: clamp(112px, 15vw, 148px);
  aspect-ratio: 1;
}
.page-home .home-calendar-ring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.page-home .home-calendar-ring__circle {
  fill: none;
}
.page-home .home-calendar-ring__circle--track {
  stroke: rgba(139, 152, 180, .16);
}
.page-home .home-calendar-ring__circle--bar {
  stroke: var(--green);
  stroke-linecap: round;
}
.page-home .home-calendar-ring__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--mono);
}
.page-home .home-calendar-ring__pre,
.page-home .home-calendar-ring__suf {
  font-size: 13px;
  color: var(--muted);
}
.page-home .home-calendar-ring__num {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.page-home .home-calendar-ring__side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-home .home-calendar-ring__cap {
  font-size: 13px;
  color: var(--muted);
}
.page-home .home-calendar-ring__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--text);
}

.page-home .home-calendar-list {
  list-style: none;
  margin: 4px 0 8px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.page-home .home-calendar-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}
.page-home .home-calendar-list span {
  color: var(--muted);
  flex: none;
}
.page-home .home-calendar-list strong {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}
.page-home .home-hero-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-home .home-hero-card__cta:hover {
  color: var(--green);
}

.page-home .home-hero-card--teams {
  border-radius: 20px 10px 20px 10px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(0, 163, 255, .2), transparent 50%),
    linear-gradient(160deg, rgba(18, 26, 42, .86), rgba(18, 26, 42, .5));
}

.page-home .home-hero-card--live {
  border-radius: 10px 20px 10px 20px;
  background:
    radial-gradient(120% 100% at 0% 100%, rgba(57, 255, 136, .18), transparent 56%),
    linear-gradient(160deg, rgba(18, 26, 42, .86), rgba(18, 26, 42, .5));
}
.page-home .home-hero-card--live .home-hero-card__value em {
  color: var(--blue);
}
.page-home .home-hero-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--green);
}
.page-home .home-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(57, 255, 136, .14);
  flex: none;
}
.page-home .home-hero-card--live .home-dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, .14);
}

.page-home .home-hero-card--apple {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  border: 1px dashed rgba(123, 92, 255, .5);
  border-radius: var(--home-radius-s);
  background: linear-gradient(120deg, rgba(123, 92, 255, .2), rgba(18, 26, 42, .6) 78%);
}
.page-home .home-hero-card--apple::after {
  background: linear-gradient(105deg, transparent, rgba(123, 92, 255, .2), transparent);
}
.page-home .home-hero-card__apple-label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text);
}
.page-home .home-hero-card__apple-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-hero-card__apple-chips span {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 23, .55);
  font-size: 12px;
  color: var(--muted);
}
.page-home .home-hero-card__apple-more {
  margin-left: auto;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
}

.page-home .home-speed-line {
  position: absolute;
  right: -2%;
  left: -2%;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue) 18%, var(--green) 52%, transparent 92%);
  transform: skewX(-18deg);
  opacity: .5;
  pointer-events: none;
}

.page-home .home-section {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 0;
}
.page-home .home-section .section-head__title {
  margin: 12px 0 14px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
}
.page-home .home-section .section-head__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-home .home-section--round34 {
  background:
    radial-gradient(90% 70% at 92% 12%, rgba(0, 163, 255, .13), transparent 58%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
}
.page-home .home-round34-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}
.page-home .home-round34-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-round34-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18, 26, 42, .55);
  font-size: 13px;
}
.page-home .home-round34-list span {
  flex: none;
  color: var(--muted);
}
.page-home .home-round34-list strong {
  color: var(--text);
  font-weight: 600;
}
.page-home .home-round34-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-view-toggle {
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: linear-gradient(150deg, rgba(18, 26, 42, .92), rgba(10, 14, 23, .72));
  padding: clamp(16px, 2vw, 22px);
}
.page-home .home-view-toggle__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-home .home-view-toggle__labels {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.page-home .home-view-toggle__tab {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 23, .55);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.page-home .home-view-toggle__panel {
  display: none;
}
.page-home .home-view-toggle__radio--calendar:checked ~ .home-view-toggle__labels .home-view-toggle__tab--calendar,
.page-home .home-view-toggle__radio--list:checked ~ .home-view-toggle__labels .home-view-toggle__tab--list {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--bg-deep);
}
.page-home .home-view-toggle__radio--calendar:checked ~ .home-view-toggle__panels .home-view-toggle__panel--calendar,
.page-home .home-view-toggle__radio--list:checked ~ .home-view-toggle__panels .home-view-toggle__panel--list {
  display: block;
}
.page-home .home-view-toggle__radio--calendar:focus-visible ~ .home-view-toggle__labels .home-view-toggle__tab--calendar,
.page-home .home-view-toggle__radio--list:focus-visible ~ .home-view-toggle__labels .home-view-toggle__tab--list {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.page-home .home-calendar-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px;
  padding: 10px 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-home .home-calendar-track::-webkit-scrollbar {
  display: none;
}
.page-home .home-calendar-track__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.page-home .home-calendar-track__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
}
.page-home .home-calendar-track__label {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  font-family: var(--mono);
}
.page-home .home-calendar-track__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--line));
  margin-top: 5px;
  min-width: 4px;
}
.page-home .home-calendar-track__node--now .home-calendar-track__dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(57, 255, 136, .16);
}
.page-home .home-calendar-track__switch {
  cursor: pointer;
  padding: 4px 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: rgba(57, 255, 136, .12);
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.page-home .home-calendar-track__switch:hover {
  background: var(--green);
  color: var(--bg-deep);
}
.page-home .home-view-toggle__caption {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.page-home .home-list-rows {
  border-top: 1px solid var(--line);
}
.page-home .home-list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.page-home .home-list-row__sport {
  flex: none;
  min-width: 3.2em;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--blue);
}
.page-home .home-list-row__name {
  flex: 1;
  color: var(--text);
}
.page-home .home-list-row__state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
}
.page-home .home-list-row__state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.page-home .home-list-row__state--info {
  color: var(--blue);
}
.page-home .home-list-row__state--info::before {
  background: var(--blue);
}
.page-home .home-view-toggle__back {
  display: inline-block;
  margin-top: 16px;
  cursor: pointer;
  font-size: 12px;
  color: var(--muted);
  transition: color .2s ease;
}
.page-home .home-view-toggle__back:hover {
  color: var(--yellow);
}

.page-home .home-round34-media {
  margin: clamp(30px, 4vw, 48px) 0 0;
}
.page-home .home-round34-media .media-frame {
  aspect-ratio: 3 / 2;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}
.page-home .home-apple-media .media-frame {
  aspect-ratio: 9 / 7;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}
.page-home .home-compare-media .media-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}
.page-home .home-round34-media img,
.page-home .home-apple-media img,
.page-home .home-compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-round34-media figcaption,
.page-home .home-apple-media figcaption,
.page-home .home-compare-media figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  letter-spacing: .05em;
}

.page-home .home-section--apple {
  background:
    radial-gradient(76% 64% at 8% 32%, rgba(123, 92, 255, .2), transparent 60%),
    var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-home .home-apple-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.page-home .home-apple-entries {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}
.page-home .home-apple-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px 10px 18px 10px;
  background: linear-gradient(140deg, rgba(10, 14, 23, .68), rgba(18, 26, 42, .46));
}
.page-home .home-apple-entry__num {
  flex: none;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.3;
}
.page-home .home-apple-entry__body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}
.page-home .home-apple-entry__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.page-home .home-apple-cta {
  margin-top: 4px;
}

.page-home .home-section--compare {
  background:
    radial-gradient(80% 80% at 94% 80%, rgba(0, 163, 255, .15), transparent 58%),
    var(--bg-deep);
}
.page-home .home-compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.page-home .home-compare-steps {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-compare-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px 8px 16px 8px;
  background: rgba(18, 26, 42, .52);
}
.page-home .home-compare-steps__num {
  flex: none;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.6;
}
.page-home .home-compare-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.page-home .home-compare-steps strong {
  color: var(--text);
  font-weight: 600;
}
.page-home .home-compare-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.page-home .home-compare-chips .status-chip {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(18, 26, 42, .55);
}
.page-home .home-compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-section--portal {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(18, 26, 42, .92) 100%);
  border-top: 1px solid var(--line);
}
.page-home .home-portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.page-home .home-portal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px 12px 22px 12px;
  background: linear-gradient(150deg, rgba(18, 26, 42, .88), rgba(10, 14, 23, .62));
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.page-home .home-portal-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(57, 255, 136, .1), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .3s ease;
}
.page-home .home-portal-card:hover,
.page-home .home-portal-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 163, 255, .55);
}
.page-home .home-portal-card:hover::after {
  left: 125%;
}
.page-home .home-portal-card__label {
  margin: 0;
  font-family: var(--heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}
.page-home .home-portal-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}
.page-home .home-portal-card__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}
.page-home .home-portal-card--story .home-portal-card__more { color: var(--purple); }
.page-home .home-portal-card--journal .home-portal-card__more { color: var(--green); }
.page-home .home-portal-card--support .home-portal-card__more { color: var(--blue); }
.page-home .home-portal-card--download .home-portal-card__more { color: var(--yellow); }
.page-home .home-portal-card--contact .home-portal-card__more { color: var(--muted); }
.page-home .home-portal-trust {
  margin: 40px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 560px) {
  .page-home .home-hero__collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .home-hero-card--calendar,
  .page-home .home-hero-card--apple {
    grid-column: 1 / 3;
  }
}

@media (min-width: 720px) {
  .page-home .home-portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__collage {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }
  .page-home .home-hero-card--calendar {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .page-home .home-hero-card--teams {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(8px);
  }
  .page-home .home-hero-card--live {
    grid-column: 2;
    grid-row: 2;
    transform: translateY(-8px);
  }
  .page-home .home-hero-card--apple {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

@media (min-width: 960px) {
  .page-home .home-round34-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  }
  .page-home .home-apple-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .page-home .home-compare-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  }
}

@media (min-width: 1080px) {
  .page-home .home-portal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
