:root {
  color-scheme: dark;
  --page: #252a2f;
  --bar: #373d42;
  --bar-line: #20252a;
  --card: #30363c;
  --card-dark: #252b30;
  --text: #f4f6f7;
  --muted: #c7ccd0;
  --soft: #96a0a9;
  --blue: #078de4;
  --green: #42d17a;
  --red: #ff6363;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body.home-surface {
  min-height: 100vh;
  background:
    linear-gradient(rgba(16, 22, 28, .72), rgba(28, 32, 36, .92)),
    radial-gradient(circle at 18% 22%, rgba(7, 141, 228, .42), transparent 24%),
    radial-gradient(circle at 74% 16%, rgba(66, 209, 122, .32), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    #1f262d;
  background-size: auto, auto, auto, 16px 16px, 16px 16px, auto;
  background-attachment: fixed;
}

body.home-surface::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(28deg, transparent 0 42%, rgba(142, 209, 255, .12) 43% 45%, transparent 46%),
    linear-gradient(153deg, transparent 0 52%, rgba(66, 209, 122, .1) 53% 55%, transparent 56%);
  filter: blur(8px);
  opacity: .75;
  pointer-events: none;
  transform: scale(1.04);
}

body.home-surface .site-header,
body.home-surface .home-page {
  position: relative;
  z-index: 1;
}

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

.site-header {
  width: 100%;
  height: 64px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid var(--bar-line);
  background: var(--bar);
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(5, 112px);
  justify-content: center;
  align-items: stretch;
  height: 100%;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  transition: background-color .15s ease, color .15s ease;
}

.nav-item svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item.active,
.nav-item:hover,
.nav-item:focus-visible {
  background: rgba(0, 0, 0, .12);
  color: var(--text);
  outline: 0;
}

.nav-item span {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rising-page {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 44px;
}

.home-page {
  width: min(1108px, calc(100% - 28px));
  margin: 0 auto;
  padding: 36px 0 54px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 204px;
  align-items: start;
  margin-bottom: 26px;
  border-radius: 8px;
  background: linear-gradient(112deg, #075b97, #03334f);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3), 0 1px 0 rgba(255, 255, 255, .12) inset;
  padding: 36px 38px;
}

.home-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.home-hero p {
  max-width: 850px;
  margin: 16px 0 0;
  color: #a6c8df;
  font-size: 16px;
  line-height: 1.45;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.home-hero-actions a,
.home-section-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: #078de4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 0 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .24);
}

.home-hero-actions a:hover,
.home-section-head a:hover,
.home-category-tile:hover,
.home-category-tile:focus-visible {
  background: #159cf5;
  outline: 0;
}

.home-socials {
  display: flex;
  gap: 7px;
}

.home-socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #5865f2;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.home-socials a + a {
  background: #111820;
}

.home-section {
  margin-top: 24px;
}

.home-section h2 {
  margin: 0 0 14px;
  color: #f4f6f7;
  font-size: 29px;
  line-height: 1.1;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-section-head a {
  min-width: 132px;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 14px;
}

.home-category-tile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 70px;
  gap: 10px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 42%),
    linear-gradient(60deg, rgba(255, 255, 255, .045) 25%, transparent 25% 50%, rgba(255, 255, 255, .045) 50% 75%, transparent 75%),
    #086aad;
  background-size: auto, 44px 44px, auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.home-category-tile svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-category-tile span {
  overflow-wrap: anywhere;
}

.home-card-row {
  grid-template-columns: repeat(6, minmax(128px, 1fr));
  overflow: hidden;
}

.home-card-row .game-card:nth-child(n + 7),
.home-card-row .developer-card:nth-child(n + 5) {
  display: none;
}

.home-card-row .game-title {
  min-height: 34px;
}

.home-card-row .developer-card {
  min-height: 182px;
}

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

.page-head h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.page-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
}

.sort-control select {
  min-height: 38px;
  min-width: 230px;
  border: 1px solid rgba(0, 0, 0, .38);
  border-radius: 4px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  padding: 0 10px;
  outline: 0;
}

.sort-control select:focus-visible {
  border-color: rgba(7, 141, 228, .75);
}

.summary-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.summary-item {
  border: 1px solid rgba(0, 0, 0, .38);
  border-radius: 4px;
  background: var(--card);
  padding: 11px 12px;
}

.summary-item span {
  display: block;
  color: var(--soft);
  font-size: 12px;
}

.summary-item strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(174px, 1fr));
  gap: 14px;
}

.game-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 8px 18px rgba(0, 0, 0, .18);
}

.game-card.confirmed {
  border-color: rgba(66, 209, 122, .55);
}

.game-thumb-wrap {
  display: block;
  aspect-ratio: 1;
  background: #eceff1;
}

.game-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fallback-thumb {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5d6871, #252b30);
}

.fallback-thumb span {
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
}

.game-body {
  padding: 8px 8px 10px;
}

.game-title {
  min-height: 36px;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.game-status {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--card-dark);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.game-status.rising {
  background: rgba(66, 209, 122, .16);
  color: var(--green);
}

.game-status.top-rank {
  background: rgba(7, 141, 228, .18);
  color: #8ed1ff;
}

.game-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 5px;
  color: var(--soft);
  font-size: 12px;
}

.game-stat strong {
  color: #ffffff;
  font-weight: 700;
}

.game-stat .rise-up {
  color: var(--green);
}

.game-stat .rise-flat {
  color: var(--muted);
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pill {
  max-width: 100%;
  overflow: hidden;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--card-dark);
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(0, 0, 0, .35);
  border-radius: 4px;
  background: var(--card);
  padding: 22px;
  color: var(--muted);
}

.loading-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.developer-profile > .loading-state {
  min-height: calc(100vh - 64px - 52px);
}

.loading-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255, 255, 255, .16);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: loading-spin .8s linear infinite;
}

.page-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(37, 42, 47, .78);
}

.page-loading-overlay .loading-state {
  min-height: 0;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.developer-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0 0 14px;
}

.developer-search input {
  min-height: 42px;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, .38);
  border-radius: 4px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  padding: 0 12px;
  outline: 0;
}

.developer-search button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  background: #444b51;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.developer-search button:hover {
  background: #4f575e;
}

.search-result {
  margin-bottom: 14px;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.developer-card,
.user-result-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: 4px;
  background: var(--card);
  padding: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 8px 18px rgba(0, 0, 0, .18);
}

.clickable-developer {
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, background-color .15s ease;
}

.clickable-developer:hover,
.clickable-developer:focus-visible {
  border-color: rgba(7, 141, 228, .7);
  background: #343b42;
  outline: 0;
  transform: translateY(-1px);
}

.developers-grid.profile-open {
  margin-top: 14px;
}

.developer-avatar {
  width: 68px;
  height: 68px;
  border-radius: 4px;
  background: var(--card-dark);
  object-fit: cover;
}

.developer-name {
  margin: 0 0 5px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verified-badge {
  display: inline-block;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  line-height: 0;
  vertical-align: -2px;
}

.verified-badge svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.developer-type {
  color: var(--soft);
  font-size: 12px;
}

.developer-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  color: var(--soft);
  font-size: 12px;
}

.developer-stat strong {
  color: #fff;
}

.developer-games {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.developer-groups {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 2px;
  color: var(--soft);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.developer-games a {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.developer-games a:hover {
  color: #fff;
}

.try-contact-button {
  width: fit-content;
  min-height: 34px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  background: #444b51;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
}

.try-contact-button:hover,
.try-contact-button:focus-visible {
  background: #4f575e;
  outline: 0;
}

.try-contact-button:disabled {
  cursor: wait;
  opacity: .65;
}

.contact-result {
  grid-column: 1 / -1;
}

.contact-empty,
.contact-links {
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, .28);
  border-radius: 4px;
  background: var(--card-dark);
  padding: 10px;
}

.contact-empty {
  color: var(--muted);
  font-size: 12px;
}

.contact-links {
  display: grid;
  gap: 8px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.contact-links a:hover {
  color: #fff;
}

.contact-links span,
.contact-links strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-links strong {
  color: #fff;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .58);
}

.contact-modal {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #171b20;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
  padding: 22px;
}

.contact-modal h3 {
  margin: 0 36px 16px 0;
  font-size: 22px;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  outline: 0;
}

.contact-modal-body .contact-empty,
.contact-modal-body .contact-links {
  margin-top: 0;
}

.developer-warning,
.profile-warning {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(7, 141, 228, .12);
  color: var(--muted);
  font-size: 12px;
  padding: 8px;
}

.developer-profile {
  margin-bottom: 14px;
}

.profile-card {
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: 4px;
  background: var(--card);
  padding: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 8px 18px rgba(0, 0, 0, .18);
}

.profile-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: -34px;
  padding-left: 100px;
}

.profile-actions-right {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 6px;
}

.profile-actions a,
.profile-back {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  background: #444b51;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  padding: 7px 12px;
}

.profile-actions a:hover,
.profile-back:hover {
  background: #4f575e;
}

.profile-head {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.profile-avatar {
  width: 86px;
  height: 86px;
  border-radius: 4px;
  background: var(--card-dark);
  object-fit: cover;
}

.profile-head h2 {
  margin: 0 0 6px;
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.profile-section {
  margin-top: 14px;
}

.profile-section h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.profile-games-wrap {
  display: grid;
  gap: 12px;
}

.profile-groups-wrap {
  display: grid;
  gap: 12px;
}

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

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

.profile-games-wrap[data-expanded="false"] .profile-game-slot.is-extra {
  display: none;
}

.profile-groups-wrap[data-expanded="false"] .profile-group-slot.is-extra {
  display: none;
}

.profile-game-card {
  height: 100%;
}

.profile-group-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 8px 18px rgba(0, 0, 0, .18);
}

.profile-group-card a {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 9px;
}

.profile-group-icon {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 8px;
  border-radius: 3px;
  background: var(--card-dark);
  object-fit: cover;
}

.profile-group-icon.fallback-thumb {
  display: grid;
  place-items: center;
}

.profile-group-icon.fallback-thumb span {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.profile-group-card h4 {
  min-height: 34px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
}

.profile-group-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--soft);
  font-size: 11px;
}

.profile-group-stat strong {
  color: #fff;
}

.profile-group-role {
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-game-card .game-body {
  padding: 7px;
}

.profile-game-card .game-title {
  min-height: 32px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 16px;
}

.profile-game-card .game-stat {
  font-size: 11px;
  margin-top: 4px;
}

.profile-games-toggle {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  background: #444b51;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.profile-games-toggle:hover,
.profile-games-toggle:focus-visible {
  background: #4f575e;
  outline: 0;
}

.profile-list {
  display: grid;
  gap: 6px;
}

.profile-list-item,
.profile-empty {
  border: 1px solid rgba(0, 0, 0, .28);
  border-radius: 4px;
  background: var(--card-dark);
  padding: 10px;
}

.profile-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.profile-list-item:hover {
  color: #fff;
  background: #2b3238;
}

.profile-list-item span,
.profile-list-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-list-item strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: 12px;
}

.profile-list-item em {
  grid-column: 1 / -1;
  overflow: hidden;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-empty {
  color: var(--soft);
  font-size: 13px;
}

@media (max-width: 680px) {
  .site-header {
    height: 60px;
  }

  .main-nav {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    justify-content: stretch;
  }

  .nav-item {
    font-size: 10px;
  }

  .nav-item svg {
    width: 25px;
    height: 25px;
  }

  .page-head {
    align-items: stretch;
    flex-direction: column;
  }

  .page-controls {
    justify-content: stretch;
  }

  .sort-control {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control select {
    width: 100%;
    min-width: 0;
  }

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

  .developer-search {
    grid-template-columns: 1fr;
  }

  .developers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .profile-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 14px;
    padding-left: 0;
  }

  .profile-actions-right {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-list-item {
    grid-template-columns: 1fr;
  }

  .profile-head {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .profile-avatar {
    width: 68px;
    height: 68px;
  }

  .profile-head h2 {
    font-size: 18px;
  }

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

  .home-page {
    width: min(100% - 22px, 1108px);
    padding-top: 28px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px 22px;
  }

  .home-hero h1 {
    font-size: 30px;
  }

  .home-socials {
    position: absolute;
    top: 18px;
    right: 18px;
  }

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

  .home-category-tile {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 62px;
    font-size: 13px;
    padding: 10px;
  }

  .home-category-tile svg {
    width: 30px;
    height: 30px;
  }

  .home-section h2 {
    font-size: 25px;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section-head a {
    width: 100%;
  }

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