.page-home{
  --home-hero-bg: linear-gradient(135deg, #0F1B2E 0%, #101828 70%, #1A2A3F 100%);
  --home-accent-glow: rgba(0, 255, 136, 0.12);
  --home-grid-line: rgba(192, 192, 192, 0.08);
  --home-card-radius: 14px;
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
}

.page-home .home-hero{
  position: relative;
  background: var(--home-hero-bg);
  padding: clamp(48px, 8vw, 96px) var(--container-pad) 0;
  border-bottom: 1px solid var(--border);
}

.page-home .home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-home .hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .hero-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .hero-index{
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.page-home .hero-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white);
}

.page-home .hero-title-complement{
  display: block;
  margin-top: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 100;
  background: linear-gradient(90deg, var(--accent) 0%, #C0C0C0 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.06em;
}

.page-home .hero-status-block{
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(26, 42, 63, 0.7);
  border-left: 4px solid var(--accent);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-home .hero-status-icon{
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.page-home .hero-status-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #C0C0C0;
  max-width: 60ch;
}

.page-home .hero-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.page-home .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: transparent;
  border: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  cursor: pointer;
  color: var(--white);
  transition: filter var(--transition), transform var(--transition);
  text-decoration: none;
}

.page-home .btn-primary{
  background: var(--accent);
  color: #0F1B2E;
  font-weight: 700;
}

.page-home .btn-outline{
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.page-home .btn:hover,
.page-home .btn:focus-visible{
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.25));
  transform: translateY(-2px);
}

.page-home .hero-index-list{
  list-style: none;
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.page-home .hero-index-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.page-home .hero-index-list a{
  color: #C0C0C0;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

.page-home .hero-index-list a:hover{
  color: var(--accent);
}

.page-home .index-dot{
  width: 6px;
  height: 6px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.page-home .hero-right{
  position: relative;
}

.page-home .hero-board-wrap{
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  padding: 24px;
  overflow: hidden;
}

.page-home .hero-board-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
}

.page-home .hero-board-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 46, 0.7) 100%);
  pointer-events: none;
}

.page-home .board-topline{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #C0C0C0;
}

.page-home .board-live-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.page-home .board-live-text{
  color: var(--accent);
}

.page-home .board-live-mode{
  margin-left: auto;
  color: var(--gold);
  font-size: 10px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  padding: 2px 8px;
}

.page-home .board-score-row{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 28px 0 24px;
}

.page-home .board-team{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .board-team--right{
  align-items: flex-end;
  text-align: right;
}

.page-home .board-team-name{
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.page-home .board-team-league{
  font-size: 12px;
  color: #C0C0C0;
}

.page-home .board-score-main{
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .board-score-num{
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 100;
  color: var(--accent);
  line-height: 1;
}

.page-home .board-score-sep{
  font-family: var(--font-headline);
  font-size: 2.4rem;
  color: var(--metal);
}

.page-home .board-stats-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.page-home .board-stat{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .board-stat-label{
  font-size: 11px;
  color: #C0C0C0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .board-stat-val{
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--white);
}

.page-home .board-stat-bar{
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  display: block;
}

.page-home .board-stat-bar i{
  display: block;
  height: 100%;
  background: var(--accent);
}

.page-home .board-foot{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #C0C0C0;
  font-family: var(--font-headline);
  letter-spacing: 0.06em;
}

.page-home .hero-strip{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding-bottom: 36px;
}

.page-home .strip-item{
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #C0C0C0;
  padding: 8px 18px;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-home .strip-item:first-child{
  color: var(--accent);
  border-color: var(--accent);
}

.page-home .data-flow-line{
  background: var(--bg-deep);
  padding: 40px 0;
  position: relative;
}

.page-home .data-flow-line svg{
  display: block;
  height: 40px;
  width: 100%;
}

.page-home .section{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--container-pad);
}

.page-home .section-wide{
  max-width: 100%;
  padding: clamp(48px, 8vw, 96px) var(--container-pad);
  background: var(--bg-deep);
}

.page-home .section-narrow{
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--container-pad);
}

.page-home .section-head{
  margin-bottom: 48px;
}

.page-home .section-tag{
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  padding-bottom: 4px;
}

.page-home .section-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 12px;
  color: var(--white);
  letter-spacing: 0.03em;
}

.page-home .section-desc{
  font-size: 15px;
  line-height: 1.8;
  color: #C0C0C0;
  max-width: 50ch;
}

.page-home .site-statement{
  background: var(--bg-primary);
}

.page-home .statement-cut{
  position: relative;
}

.page-home .statement-cut::before{
  content: "";
  position: absolute;
  top: 0;
  left: var(--container-pad);
  right: var(--container-pad);
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 70%);
}

.page-home .statement-tag{
  margin-bottom: 18px;
}

.page-home .term-chip{
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: var(--gold);
  letter-spacing: 0.08em;
}

.page-home .term-chip--violet{
  background: rgba(138, 43, 226, 0.18);
  border-color: rgba(138, 43, 226, 0.5);
  color: #D8B4FE;
}

.page-home .statement-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.4;
  margin: 0 0 32px;
  max-width: 100%;
}

.page-home .statement-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .statement-item{
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: border-color var(--transition);
}

.page-home .statement-item:hover{
  border-color: rgba(0, 255, 136, 0.4);
}

.page-home .statement-num{
  font-family: var(--font-headline);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}

.page-home .statement-copy{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #C0C0C0;
}

.page-home .live-board-section{
  background: var(--bg-deep);
}

.page-home .live-board-section .section-head{
  max-width: var(--container-max);
  margin: 0 auto 48px;
  padding: 0 var(--container-pad);
}

.page-home .live-board-section .section-desc{
  max-width: 62ch;
}

.page-home .live-board-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.page-home .live-card{
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  padding: 22px 24px;
  transition: transform var(--transition), border-color var(--transition);
  overflow: hidden;
}

.page-home .live-card:hover{
  border-color: var(--accent);
  transform: translateY(-4px);
}

.page-home .live-card:hover .live-detail-tip{
  color: var(--accent);
}

.page-home .live-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-home .live-league{
  color: var(--gold);
  text-transform: uppercase;
}

.page-home .live-minute{
  font-size: 12px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-home .live-teams{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.page-home .live-team{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .live-team--right{
  align-items: flex-end;
  text-align: right;
}

.page-home .live-team-short{
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 400;
}

.page-home .live-team-stat{
  font-size: 12px;
  color: #C0C0C0;
}

.page-home .live-score{
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 100;
  color: var(--accent);
  line-height: 1;
}

.page-home .live-detail-tip{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #C0C0C0;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.page-home .live-card--feature{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  grid-column: auto;
}

.page-home .live-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.page-home .live-card-feature-content{
  padding: 24px;
  position: relative;
}

.page-home .live-feature-label{
  font-family: var(--font-headline);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .live-feature-text{
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-home .data-line{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .data-dot{
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.page-home .core-services{
  background: var(--bg-primary);
}

.page-home .service-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .service-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  text-decoration: none;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}

.page-home .service-card:hover{
  border-color: var(--accent);
  background: #223047;
}

.page-home .service-card:hover .service-link-more{
  color: var(--accent);
}

.page-home .service-index{
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-home .service-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--white);
}

.page-home .service-desc{
  font-size: 14px;
  line-height: 1.7;
  color: #C0C0C0;
  margin: 0 0 24px;
  flex: 1;
}

.page-home .service-link-more{
  font-family: var(--font-headline);
  font-size: 13px;
  color: var(--metal);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.page-home .mobile-entry{
  background: var(--bg-deep);
}

.page-home .mobile-entry-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.page-home .mobile-entry-copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .mobile-entry-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin: 0 0 16px;
  color: var(--white);
}

.page-home .mobile-entry-desc{
  font-size: 15px;
  color: #C0C0C0;
  line-height: 1.8;
  margin: 0 0 24px;
}

.page-home .mobile-entry-list{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .mobile-entry-list li{
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: var(--white);
}

.page-home .mobile-entry-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.page-home .mobile-entry-visual{
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.page-home .mobile-entry-visual img{
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border: 1px solid var(--border);
}

.page-home .updates-summary{
  background: var(--bg-primary);
}

.page-home .updates-list{
  display: flex;
  flex-direction: column;
}

.page-home .update-item{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), padding-left var(--transition);
}

.page-home .update-item:hover{
  background: rgba(0, 255, 136, 0.05);
  padding-left: 32px;
}

.page-home .update-date{
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.page-home .update-category{
  align-self: flex-start;
}

.page-home .update-text{
  font-size: 14px;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-home .update-arrow{
  display: none;
  font-family: var(--font-headline);
  color: var(--accent);
}

.page-home .faq-summary{
  background: var(--bg-primary);
}

.page-home .faq-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.page-home .faq-item:first-child{
  border-top: 1px solid var(--border);
}

.page-home .faq-question{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 22px 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.page-home .faq-question:hover{
  color: var(--accent);
}

.page-home .toggle-line{
  width: 16px;
  height: 2px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition);
}

.page-home .toggle-line::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: rotate(90deg);
  transition: transform var(--transition);
}

.page-home .faq-item[data-open] .toggle-line::after{
  transform: rotate(0deg);
}

.page-home .faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.page-home .faq-item[data-open] .faq-answer{
  max-height: 300px;
}

.page-home .faq-answer p{
  padding: 0 8px 22px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #C0C0C0;
}

.page-home .faq-more{
  margin-top: 28px;
}

.page-home .btn-sm{
  padding: 10px 22px;
  font-size: 12px;
}

.page-home .btn-outline{
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.page-home .subscribe-note{
  background: var(--bg-secondary);
}

.page-home .subscribe-note-card{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.page-home .subscribe-note-card img{
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .subscribe-note-copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .subscribe-note-title{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0 0 16px;
  color: var(--white);
}

.page-home .subscribe-note-desc{
  font-size: 15px;
  line-height: 1.8;
  color: #C0C0C0;
  margin: 0;
}

.page-home .trust-band{
  background: var(--bg-deep);
}

.page-home .trust-copy{
  font-family: var(--font-headline);
  font-weight: 100;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 24px;
}

.page-home .trust-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .trust-meta span{
  font-size: 12px;
  color: #C0C0C0;
  padding: 6px 14px;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

@media (min-width: 640px){}

@media (min-width: 900px){
  .page-home .hero-grid{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
  }

  .page-home .hero-left{
    min-height: 640px;
  }

  .page-home .hero-status-text{
    font-size: 16px;
  }

  .page-home .statement-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-home .live-board-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .live-card--feature{
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .page-home .live-img{
    height: 100%;
    min-height: 260px;
  }

  .page-home .live-card-feature-content{
    padding: 32px;
  }

  .page-home .service-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-home .mobile-entry-grid{
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .mobile-entry-visual{
    order: 2;
    max-width: 360px;
  }

  .page-home .mobile-entry-copy{
    order: 1;
  }

  .page-home .updates-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .update-item{
    border: 1px solid var(--border);
    border-right: none;
    padding: 28px 24px;
  }

  .page-home .update-item:last-child{
    border-right: 1px solid var(--border);
  }

  .page-home .update-arrow{
    display: block;
    margin-top: auto;
    font-size: 18px;
  }

  .page-home .subscribe-note-card{
    grid-template-columns: 0.9fr 1.4fr;
    gap: 48px;
  }

  .page-home .subscribe-note-card img{
    width: 100%;
    max-width: 400px;
  }
}

@media (min-width: 1200px){
  .page-home .live-board-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .live-card--feature{
    grid-column: span 1;
  }

  .page-home .live-card--feature{
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .page-home .live-img{
    height: 200px;
    width: 100%;
  }

  .page-home .live-card-feature-content{
    padding: 24px;
  }

  .page-home .service-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}
