@charset "UTF-8";

.article-single-header {
  margin-bottom: 1.25rem;
}

.article-single-header > .f-app-breadcrumbs {
  width: 100%;
  margin: 0 0 1.25rem;
}

.article-single-title {
  max-width: 46rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-align: right;
}

.article-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  color: #6b7779;
  font-size: 0.8125rem;
  line-height: 1.75;
}

.article-single-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.article-single-meta-item svg {
  width: 1.0625rem;
  height: 1.0625rem;
  flex: 0 0 1.0625rem;
  color: #29b1d8;
}

.article-single-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 1.5rem;
  border-radius: 0.5rem;
  background: #eaf4f6;
}

.article-single-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.article-single-content {
  color: #364244;
}

.article-single-content ul,
.article-single-content ol {
  direction: rtl;
  margin: 0 0 1.5rem;
  padding-right: 1.75rem;
  padding-left: 0;
  list-style-position: outside;
  text-align: right;
}

.article-single-content ul {
  list-style-type: disc;
}

.article-single-content ol {
  list-style-type: decimal;
}

.article-single-content li {
  direction: rtl;
  margin-bottom: 0.5rem;
  padding-right: 0.25rem;
  text-align: right;
}

.article-single-content li::before {
  content: none !important;
}

.article-single-content li::marker {
  color: #29b1d8;
  font-weight: 800;
}

.article-single-content li > ul,
.article-single-content li > ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.article-single-content h2,
.article-single-content h3 {
  scroll-margin-top: 5.5rem;
}

.article-toc {
  overflow: hidden;
  margin: 1.75rem 0 2rem;
  border: 1px solid rgba(23, 32, 33, 0.1);
  border-right: 4px solid #29b1d8;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(23, 32, 33, 0.05);
}

.article-toc-head {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f5f9fa;
}

.article-toc-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.article-toc-heading > span:last-child {
  display: grid;
  gap: 0.125rem;
}

.article-toc-heading strong {
  color: #172021;
  font-size: 1rem;
  line-height: 1.6;
}

.article-toc-heading small {
  color: #748082;
  font-size: 0.75rem;
  line-height: 1.5;
}

.article-toc-icon {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(41, 177, 216, 0.12);
  color: #168fb3;
}

.article-toc-toggle {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #168fb3;
  cursor: pointer;
}

.article-toc-toggle svg {
  transition: transform 0.2s ease;
}

.article-toc.is-collapsed .article-toc-toggle svg {
  transform: rotate(90deg);
}

.article-toc-list,
.article-single-content .article-toc-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.25rem;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
}

.article-toc-list[hidden] {
  display: none;
}

.article-toc-item,
.article-single-content .article-toc-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc-item::marker {
  content: "";
}

.article-toc-item a {
  display: grid;
  min-height: 2.75rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #4e5b5d;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.7;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.article-toc-item--h3 a {
  padding-right: 1.25rem;
  color: #687476;
  font-size: 0.75rem;
}

.article-toc-item a:hover,
.article-toc-item a.is-active {
  background: rgba(41, 177, 216, 0.1);
  color: #137f9f;
}

.article-toc-number {
  display: inline-grid;
  min-width: 2rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(41, 177, 216, 0.18);
  border-radius: 0.375rem;
  color: #168fb3;
  font-size: 0.6875rem;
  font-weight: 800;
}

.article-game-links {
  margin: 1.5rem 0 2.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(23, 32, 33, 0.11);
  border-radius: 0.5rem;
  background: #f3f5f6;
}

.article-game-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.article-game-cover {
  width: 4.75rem;
  height: 4.75rem;
  flex: 0 0 4.75rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(23, 32, 33, 0.08);
  border-radius: 0.5rem;
  background: #fff;
}

.article-game-cover img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.article-game-heading {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.article-game-heading > span {
  color: #748082;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-game-heading > strong {
  overflow: hidden;
  color: #172021;
  font-size: 1.25rem;
  line-height: 1.55;
  text-overflow: ellipsis;
}

.article-game-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(23, 32, 33, 0.08);
}

.article-game-details > div {
  min-width: 0;
}

.article-game-details dt,
.article-game-details dd {
  margin: 0;
}

.article-game-details dt {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #748082;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-game-details dt svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-game-details dd {
  margin-top: 0.25rem;
  overflow: hidden;
  color: #354244;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-game-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.article-game-link {
  display: inline-flex;
  min-width: 0;
  max-width: 14rem;
  min-height: 3.75rem;
  flex: 1 1 11rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: #343740;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.article-game-link > svg,
.article-game-link > img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
}

.article-game-link > img {
  border-radius: 50%;
}

.article-game-link > span {
  display: grid;
  min-width: 0;
  gap: 0;
  text-align: right;
}

.article-game-link small,
.article-game-link strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-game-link small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.3;
}

.article-game-link strong {
  color: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.45;
}

.article-game-link--google-play {
  background: #202127;
  color: #fff;
}

.article-game-link--app-store {
  background: #343740;
  color: #fff;
}

.article-game-link--meliroid {
  background: #168fb3;
  color: #fff;
}

.article-game-link:hover {
  border-color: #29b1d8;
  background: #137f9f;
  color: #fff;
  transform: translateY(-1px);
}

.article-game-link:active {
  transform: scale(0.98);
}

.article-game-link:focus-visible,
.article-toc-toggle:focus-visible,
.article-toc-item a:focus-visible {
  outline: 3px solid rgba(41, 177, 216, 0.28);
  outline-offset: 2px;
}

.article-pros-cons,
.article-comparison {
  margin: 2rem 0 2.25rem;
}

.article-review-block-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.article-review-block-icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  place-items: center;
  border-radius: 0.5rem;
  background: rgba(41, 177, 216, 0.11);
  color: #168fb3;
}

.article-review-block-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.article-review-block-head > div {
  display: grid;
  min-width: 0;
  gap: 0.125rem;
}

.article-review-block-head small {
  color: #748082;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-review-block-head strong {
  color: #172021;
  font-size: 1.125rem;
  line-height: 1.65;
}

.article-pros-cons-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 33, 0.1);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(23, 32, 33, 0.045);
}

.article-pros-cons-panel {
  min-width: 0;
  padding: 1.25rem;
}

.article-pros-cons-panel + .article-pros-cons-panel {
  border-top: 1px solid rgba(23, 32, 33, 0.08);
}

.article-pros-cons-panel h3,
.article-single-content .article-pros-cons-panel h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.875rem;
  padding-right: 0.75rem;
  border-right: 3px solid currentColor;
  font-size: 1rem;
  line-height: 1.6;
}

.article-pros-cons-panel h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
}

.article-pros-cons-panel--positive h3 {
  color: #15865f;
}

.article-pros-cons-panel--negative h3 {
  color: #c5364e;
}

.article-pros-cons-panel ul,
.article-single-content .article-pros-cons-panel ul {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-pros-cons-panel li,
.article-single-content .article-pros-cons-panel li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: #3f4a4c;
  font-size: 0.875rem;
  line-height: 1.9;
  text-align: right;
}

.article-pros-cons-panel li > span {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  margin-top: 0.125rem;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.article-pros-cons-panel li > strong {
  color: inherit;
  font-weight: 650;
}

.article-pros-cons-panel--positive li > span {
  background: rgba(21, 134, 95, 0.1);
  color: #15865f;
}

.article-pros-cons-panel--negative li > span {
  background: rgba(197, 54, 78, 0.1);
  color: #c5364e;
}

.article-comparison-scroll {
  overflow: auto hidden;
  border: 1px solid rgba(23, 32, 33, 0.11);
  border-radius: 0.5rem;
  background: #fff;
  overscroll-behavior-inline: contain;
  scrollbar-color: #8fc9d9 #e9eff0;
  scrollbar-width: thin;
}

.article-comparison-scroll::-webkit-scrollbar {
  height: 0.5rem;
}

.article-comparison-scroll::-webkit-scrollbar-track {
  background: #e9eff0;
}

.article-comparison-scroll::-webkit-scrollbar-thumb {
  border: 2px solid #e9eff0;
  border-radius: 0.5rem;
  background: #72b8cc;
}

.article-comparison-scroll:focus-visible {
  outline: 3px solid rgba(41, 177, 216, 0.28);
  outline-offset: 2px;
}

.article-comparison table,
.article-single-content .article-comparison table {
  width: 100%;
  min-width: calc(var(--article-table-columns) * 10rem);
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #354244;
  font-size: 0.8125rem;
  line-height: 1.85;
}

.article-comparison th,
.article-comparison td,
.article-single-content .article-comparison th,
.article-single-content .article-comparison td {
  min-width: 0;
  padding: 0.875rem 1rem;
  border: 0;
  border-left: 1px solid rgba(23, 32, 33, 0.08);
  border-bottom: 1px solid rgba(23, 32, 33, 0.08);
  vertical-align: middle;
  text-align: right;
  overflow-wrap: anywhere;
}

.article-comparison th:last-child,
.article-comparison td:last-child {
  border-left: 0;
}

.article-comparison thead th,
.article-single-content .article-comparison thead th {
  padding-block: 0.875rem;
  background: #253033;
  color: #f3f6f7;
  font-size: 0.8125rem;
  font-weight: 800;
}

.article-comparison tbody tr:last-child th,
.article-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.article-comparison tbody tr:nth-child(even) th,
.article-comparison tbody tr:nth-child(even) td {
  background: #f6f8f9;
}

.article-comparison tbody tr:hover th,
.article-comparison tbody tr:hover td {
  background: #edf7fa;
}

.article-comparison thead th:first-child,
.article-comparison tbody th:first-child {
  position: sticky;
  right: 0;
  z-index: 2;
}

.article-comparison thead th:first-child {
  z-index: 3;
  background: #168fb3;
}

.article-comparison tbody th:first-child {
  background: #fff;
  color: #172021;
  font-weight: 800;
  box-shadow: -0.5rem 0 0.75rem -0.75rem rgba(23, 32, 33, 0.45);
}

.article-comparison tbody tr:nth-child(even) th:first-child {
  background: #f6f8f9;
}

.article-comparison tbody tr:hover th:first-child {
  background: #edf7fa;
}

.article-single-sidebar {
  display: none;
}

.article-sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  color: #172021;
  font-size: 1rem;
  line-height: 1.6;
}

.article-sidebar-title svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  color: #29b1d8;
}

.article-popular-list {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-popular-item {
  min-width: 0;
}

.article-popular-item > a {
  display: grid;
  min-width: 0;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem;
  border: 1px solid rgba(23, 32, 33, 0.08);
  border-radius: 0.5rem;
  background: #fff;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.article-popular-item figure {
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  margin: 0;
  border-radius: 0.375rem;
  background: #eaf4f6;
}

.article-popular-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-popular-copy {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.article-popular-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.8125rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-popular-copy small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #748082;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.article-popular-copy small svg {
  color: #29b1d8;
}

.article-popular-item > a:hover {
  border-color: rgba(41, 177, 216, 0.3);
  box-shadow: 0 0.75rem 1.5rem rgba(23, 32, 33, 0.06);
  color: #168fb3;
}

.article-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 32, 33, 0.09);
}

.article-related-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.article-related-icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  place-items: center;
  border-radius: 0.5rem;
  background: rgba(41, 177, 216, 0.11);
  color: #168fb3;
}

.article-related-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.article-related-head > div {
  display: grid;
  gap: 0.125rem;
}

.article-related-head span:not(.article-related-icon) {
  color: #748082;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-related-head h2 {
  margin: 0;
  color: #172021;
  font-size: 1.25rem;
  line-height: 1.6;
}

.article-related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.875rem;
}

.article-related-card {
  min-width: 0;
}

.article-related-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 33, 0.09);
  border-radius: 0.5rem;
  background: #fff;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.article-related-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: #eaf4f6;
}

.article-related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.article-related-copy {
  padding: 0.875rem;
}

.article-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.625rem;
  margin-bottom: 0.375rem;
  color: #748082;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.article-related-copy h3 {
  display: -webkit-box;
  margin: 0 0 0.375rem;
  overflow: hidden;
  color: #172021;
  font-size: 0.9375rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-related-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #687476;
  font-size: 0.75rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-related-card > a:hover {
  border-color: rgba(41, 177, 216, 0.3);
  box-shadow: 0 1rem 2rem rgba(23, 32, 33, 0.07);
  transform: translateY(-2px);
}

.article-related-card > a:hover .article-related-media img {
  transform: scale(1.035);
}

.article-engagement {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  margin-top: 2.5rem;
  border: 1px solid rgba(23, 32, 33, 0.08);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(23, 32, 33, 0.06);
}

.article-engagement-reaction,
.article-share {
  min-width: 0;
  padding: 1.25rem;
}

.article-share {
  border-top: 1px solid rgba(23, 32, 33, 0.08);
  background: #f5f9fa;
}

.article-engagement-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: #168fb3;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.5;
}

.article-engagement h2 {
  margin: 0 0 0.375rem;
  color: #172021;
  font-size: 1.125rem;
  line-height: 1.6;
}

.article-engagement p,
.text .article-engagement p {
  margin: 0 0 1rem;
  color: #667274;
  font-size: 0.8125rem;
  line-height: 1.9;
}

.article-reaction-actions,
.article-share-actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.article-reaction-button,
.article-share-button {
  display: inline-flex;
  min-width: 0;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(23, 32, 33, 0.1);
  border-radius: 0.5rem;
  background: #fff;
  color: #3d494b;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.article-reaction-button svg,
.article-share-button svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
}

.article-reaction-button strong {
  display: inline-grid;
  min-width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  padding: 0 0.25rem;
  border-radius: 0.375rem;
  background: #edf3f4;
  color: #566264;
  font-size: 0.6875rem;
}

.article-reaction-button:hover,
.article-reaction-button.is-active {
  border-color: rgba(41, 177, 216, 0.32);
  background: rgba(41, 177, 216, 0.1);
  color: #137f9f;
}

.article-reaction-button.is-active strong {
  background: #168fb3;
  color: #fff;
}

.article-reaction-button--dislike:hover,
.article-reaction-button--dislike.is-active {
  border-color: rgba(222, 72, 95, 0.28);
  background: rgba(222, 72, 95, 0.09);
  color: #bd344a;
}

.article-reaction-button--dislike.is-active strong {
  background: #c93b51;
}

.article-share-button:hover {
  border-color: rgba(41, 177, 216, 0.28);
  color: #1685a5;
}

.article-share-button--telegram {
  color: #1685a5;
}

.article-share-button--whatsapp {
  color: #23865e;
}

.article-share-button--instagram {
  color: #c13584;
}

.article-reaction-button:active,
.article-share-button:active {
  transform: scale(0.97);
}

.article-reaction-button:focus-visible,
.article-share-button:focus-visible {
  outline: 3px solid rgba(41, 177, 216, 0.28);
  outline-offset: 2px;
}

.article-reaction-button:disabled,
.article-share-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

@media (min-width: 42.5rem) {
  .article-toc-list,
  .article-single-content .article-toc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1rem;
  }

  .article-game-details {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .article-pros-cons-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-pros-cons-panel + .article-pros-cons-panel {
    border-top: 0;
    border-right: 1px solid rgba(23, 32, 33, 0.08);
  }

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

  .article-engagement-reaction,
  .article-share {
    padding: 1.5rem;
  }
}

@media (min-width: 62rem) {
  .article-single .str {
    align-items: flex-start;
  }

  .article-single-main {
    min-width: 0;
    order: 1;
    max-width: 55rem;
  }

  .article-single .article-single-sidebar {
    display: block;
    min-width: 18rem;
    max-width: 18rem;
    order: 2;
    padding: 0 2rem 0 0;
  }

  .article-sidebar-inner {
    position: sticky;
    top: 5.5rem;
  }

  .article-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .article-share {
    border-top: 0;
    border-right: 1px solid rgba(23, 32, 33, 0.08);
  }
}

@media (max-width: 29.9375rem) {
  .article-single-title {
    font-size: 1.625rem;
    line-height: 1.5;
  }

  .article-single-meta {
    gap: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .article-engagement-reaction,
  .article-share {
    padding: 1rem;
  }

  .article-reaction-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-reaction-button {
    width: 100%;
    padding-inline: 0.5rem;
  }

  .article-share-button {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .article-toc-head {
    padding: 0.625rem 0.75rem;
  }

  .article-game-link {
    max-width: none;
    flex-basis: calc(50% - 0.5rem);
    padding-inline: 0.625rem;
  }

  .article-game-links {
    margin-inline: 0;
    padding: 1rem;
  }

  .article-game-summary {
    gap: 0.75rem;
  }

  .article-game-cover {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
  }

  .article-game-heading > strong {
    font-size: 1.0625rem;
  }

  .article-game-details {
    gap: 0.75rem;
  }

  .article-game-link {
    min-height: 3.5rem;
  }

  .article-pros-cons,
  .article-comparison {
    margin-block: 1.75rem 2rem;
  }

  .article-pros-cons-panel {
    padding: 1rem;
  }

  .article-comparison th,
  .article-comparison td,
  .article-single-content .article-comparison th,
  .article-single-content .article-comparison td {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-reaction-button,
  .article-share-button,
  .article-game-link,
  .article-popular-item > a,
  .article-related-card > a,
  .article-related-media img,
  .article-toc-toggle svg,
  .article-toc-item a {
    transition: none;
  }
}
