* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111827;
  color: #f8fbff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.home-title-wrap h1 {
  font-size: clamp(1.45rem, 2.45vw, 2.45rem);
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.home-page {
  padding: 0;
}

.home-box {
  width: 100%;
  max-width: none;
  margin: 0;
}

.top-tabs {
  width: 100%;
  background-color: #3a3ea1;
  border-radius: 0;
  padding: 24px 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.top-tabs a {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.top-tabs a:hover {
  opacity: 0.82;
}

.top-tabs a.active {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.top-tabs .contact-tab {
  margin-left: auto;
}

.page-header {
  padding: 0;
  background-color: #3a3ea1;
  position: relative;
  z-index: 10;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.page-main {
  position: relative;
  flex: 1;
  padding: 32px 20px 8px;
  overflow: visible;
}

.home-strip {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 0;
}

.page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("RadioSunset.png");
  background-size: cover;
  background-position: 66% center;
  background-repeat: no-repeat;
  opacity: 0.38;
  filter: saturate(0.95) brightness(0.72);
  z-index: 0;
}

.page-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(17, 24, 39, 0.45), rgba(17, 24, 39, 0.72)),
    radial-gradient(circle at center, rgba(255, 215, 130, 0.08), transparent 55%);
  z-index: 1;
}

.page-main.collection-page::before {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background-image: url("RadioSunset.png");
  background-size: cover;
  background-position: 66% center;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: saturate(0.82) brightness(0.62);
  z-index: 0;
  pointer-events: none;
}

.page-main.collection-page::after {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background:
    linear-gradient(to bottom, rgba(10, 16, 28, 0.58), rgba(10, 16, 28, 0.78)),
    radial-gradient(circle at center, rgba(255, 210, 140, 0.08), transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.page-main.setup-page::before,
.page-main.blog-page::before {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background-image: url("RadioSunset.png");
  background-size: cover;
  background-position: 66% center;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: saturate(0.9) brightness(0.55);
  z-index: 0;
  pointer-events: none;
}

.page-main.setup-page::after,
.page-main.blog-page::after {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background:
    linear-gradient(to bottom, rgba(7, 12, 24, 0.62), rgba(7, 12, 24, 0.82)),
    radial-gradient(circle at center, rgba(70, 150, 255, 0.08), transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.page-main.contact-page::before {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background-image: url("RadioSunset.png");
  background-size: cover;
  background-position: 66% center;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: saturate(0.95) brightness(0.55);
  z-index: 0;
  pointer-events: none;
}

.page-main.contact-page::after {
  content: "";
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  height: calc(100vh - 82px);
  background:
    linear-gradient(to bottom, rgba(7, 10, 20, 0.62), rgba(7, 10, 20, 0.84)),
    radial-gradient(circle at center, rgba(120, 150, 255, 0.10), transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.content-panel {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(27, 37, 64, 0.88);
  border: 1px solid rgba(219, 231, 255, 0.12);
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-center-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 160px);
  padding: 72px 20px 32px;
}

.contact-panel {
  width: 100%;
  max-width: 820px;
  text-align: center;
  padding: 40px 32px;
}

.contributors-panel {
  max-width: 980px;
  text-align: center;
}

.content-panel h2 {
  color: #f8fbff;
  font-size: 2.4rem;
  margin-bottom: 8px;
  line-height: 1.15;
}

.page-title {
  margin: 0 0 12px;
  font-size: 2.15rem;
  line-height: 1.2;
  color: #f8fbff;
}

.page-intro,
.about-copy {
  color: #dbe7ff;
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-panel .page-intro {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #e2ebff;
}

.privacy-panel .about-copy,
.fairuse-panel .about-copy {
  color: #ffffff;
  font-size: 1.17rem;
}

.privacy-panel .inline-link {
  color: #ffffff;
  text-decoration: underline;
}

.about-copy + .about-copy {
  margin-top: 12px;
}

.item-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.item-card {
  display: block;
  background: rgba(58, 62, 161, 0.9);
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.item-title {
  display: block;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.item-subtitle {
  display: block;
  color: #dbe7ff;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Contact page boxes: always stacked vertically */
.item-list.contact-only {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 0;
  width: 100%;
}

.item-list.contact-only .item-card {
  width: 100%;
  max-width: 580px;
  text-align: center;
  padding: 24px 26px;
  display: block;
  background: rgba(58, 62, 161, 0.9);
  border: none;
  border-radius: 12px;
  color: #ffffff;
}

.contact-panel .item-title {
  display: block;
  font-size: 1.22rem;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 700;
}

.contact-panel .item-subtitle {
  display: block;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-top: 10px;
  word-break: break-word;
  color: #ffffff;
}

.link-card {
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.link-card:hover {
  background: rgba(47, 51, 138, 0.97);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.contributors-panel h2,
.contributors-panel .page-intro,
.contributors-grid .item-card,
.contributors-grid .item-title {
  text-align: center;
}

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.contributors-grid .item-card {
  width: 100%;
  margin: 0;
}

.dropdown-card {
  width: 100%;
}

.dropdown-card + .dropdown-card {
  margin-top: 18px;
}

.dropdown-toggle,
.nested-dropdown-toggle {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #3148b8;
  color: #ffffff;
  padding: 22px 26px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
}

.dropdown-toggle:hover,
.nested-dropdown-toggle:hover {
  background: #2d43ad;
  transform: translateY(-2px);
}

.dropdown-arrow {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.dropdown-title-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dropdown-title {
  display: block;
}

.section-note {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(248, 251, 255, 0.78);
  line-height: 1.25;
}

.dropdown-content,
.nested-dropdown-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.38s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
  margin-top: 0;
}

.dropdown-content.open,
.nested-dropdown-content.open {
  opacity: 1;
  margin-top: 14px;
}

.dropdown-inner {
  background: rgba(20, 28, 52, 0.9);
  border: 1px solid rgba(219, 231, 255, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
}

.nested-dropdown-card {
  margin-top: 18px;
}

.nested-dropdown-toggle {
  background: rgba(49, 72, 184, 0.78);
  font-size: 1.16rem;
  padding: 16px 18px;
}

.nested-dropdown-toggle:hover {
  background: rgba(49, 72, 184, 0.96);
}

.nested-dropdown-inner {
  background: rgba(12, 18, 36, 0.92);
  border: 1px solid rgba(219, 231, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
}

.archive-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.archive-list li {
  color: #e8f0ff;
  font-size: 1.08rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(49, 72, 184, 0.22);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.archive-list li a {
  display: block;
  margin: -10px -12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.archive-list li:has(a) {
  cursor: pointer;
}

.archive-list li:has(a):hover {
  background: rgba(49, 72, 184, 0.34);
  box-shadow: 0 0 0 1px rgba(219, 231, 255, 0.08);
}

.blog-page {
  padding-top: 42px;
}

.blog-page .content-panel {
  max-width: 1600px;
}

.blog-home-panel {
  max-width: 1120px;
  padding: clamp(24px, 4vw, 46px);
  background: rgba(27, 37, 64, 0.88);
  border: 1px solid rgba(219, 231, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card,
.blog-card:visited,
.blog-card:hover,
.blog-card:active {
  color: #ffffff;
  text-decoration: none;
}

.blog-card-large {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  align-items: center;
  gap: 34px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(12, 18, 36, 0.64);
  border: 1px solid rgba(219, 231, 255, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card-large:hover {
  background: rgba(49, 72, 184, 0.18);
  border-color: rgba(219, 231, 255, 0.24);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.blog-card-text {
  display: flex;
  align-items: center;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.blog-card-text:hover {
  opacity: 0.9;
}

.blog-card-text span {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  white-space: normal;
}

.blog-card-image-wrap {
  width: 100%;
  min-height: 210px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 13, 28, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.blog-card-image-wrap:hover {
  background: rgba(8, 13, 28, 0.62);
  opacity: 0.96;
}

.blog-card-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.article-panel {
  max-width: 1180px;
  padding: clamp(26px, 4vw, 54px);
  gap: 0;
}

.article-hero {
  padding: 10px 0 22px;
  border-bottom: 1px solid rgba(219, 231, 255, 0.12);
}

.article-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(49, 72, 184, 0.34);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hero h2 {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5.6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.article-lead {
  max-width: 900px;
  color: #f3f7ff;
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  line-height: 1.55;
  font-weight: 600;
}

.article-note {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(49, 72, 184, 0.55), rgba(16, 24, 48, 0.75));
  border: 1px solid rgba(219, 231, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.article-note p {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 700;
}

.article-section {
  padding: 26px 0;
  border-top: 1px solid rgba(219, 231, 255, 0.09);
}

.article-section:first-of-type {
  border-top: 0;
}

.article-section h3 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.article-section p {
  max-width: 980px;
  color: #dbe7ff;
  font-size: 1.1rem;
  line-height: 1.78;
}

.article-section p + p {
  margin-top: 14px;
}

.inline-link,
.inline-link:visited,
.inline-link:hover,
.inline-link:active,
.article-panel a,
.article-panel a:visited,
.article-panel a:hover,
.article-panel a:active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover,
.article-panel a:hover {
  opacity: 0.82;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

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

.software-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(12, 18, 36, 0.76);
  border: 1px solid rgba(219, 231, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.software-card:hover {
  transform: translateY(-3px);
  background: rgba(49, 72, 184, 0.32);
  border-color: rgba(219, 231, 255, 0.24);
  opacity: 1;
}

.software-name {
  display: block;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.15;
}

.software-desc {
  display: block;
  color: #dbe7ff;
  font-size: 1rem;
  line-height: 1.55;
}

.article-pick {
  margin-top: 8px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(49, 72, 184, 0.22);
  border: 1px solid rgba(219, 231, 255, 0.12);
}

.article-pick h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.article-pick p {
  color: #dbe7ff;
  font-size: 1.06rem;
  line-height: 1.65;
}

.article-pick p + p {
  margin-top: 6px;
}

.simple-guide-panel {
  max-width: 920px !important;
  padding: clamp(28px, 4vw, 58px);
}

.simple-guide-title {
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 12px 0 14px;
}

.simple-guide-date {
  color: rgba(248, 251, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

.simple-guide-lead {
  color: #f3f7ff;
  font-size: clamp(1.18rem, 1.65vw, 1.5rem);
  line-height: 1.65;
  font-weight: 600;
  max-width: 820px;
  margin-bottom: 28px;
}

.simple-guide-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(219, 231, 255, 0.1);
}

.simple-guide-section h2 {
  color: #ffffff;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.simple-guide-section p {
  color: #dbe7ff;
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 820px;
}

.simple-guide-section p + p {
  margin-top: 14px;
}

.simple-guide-panel a,
.simple-guide-panel a:visited,
.simple-guide-panel a:hover,
.simple-guide-panel a:active {
  color: #ffffff;
}

.software-button-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.software-button,
.software-button:visited,
.software-button:hover,
.software-button:active {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(219, 231, 255, 0.2);
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.software-button:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(219, 231, 255, 0.34);
  transform: translateY(-2px);
}

.blog-back-link {
  margin-top: 28px;
}

.blog-back-link a,
.blog-back-link a:visited,
.blog-back-link a:hover,
.blog-back-link a:active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 20px 32px;
  text-align: center;
  margin-top: auto;
}

.footer-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  text-align: center;
}

.site-footer p {
  font-size: 0.98rem;
  color: rgba(248, 251, 255, 0.72);
  line-height: 1.5;
  margin: 0;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover {
  opacity: 0.82;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.7);
}

.fairuse-panel {
  max-width: 980px;
  text-align: center;
  align-items: center;
}

.fairuse-panel h2 {
  width: 100%;
  text-align: center;
}

.fairuse-panel .about-copy {
  width: 100%;
  max-width: 860px;
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .blog-card-large {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px;
  }

  .blog-card-text span {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .blog-card-image-wrap {
    min-height: 220px;
    justify-content: center;
  }

  .blog-card-image {
    max-height: 220px;
  }

  .software-grid,
  .software-grid.linux-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .top-tabs {
    gap: 20px;
    padding: 20px 18px;
  }

  .top-tabs a {
    font-size: 1.02rem;
  }

  .top-tabs .contact-tab {
    margin-left: 0;
  }

  .page-main {
    padding: 22px 14px 12px;
    min-height: calc(100vh - 118px);
  }

  .page-main.collection-page::before,
  .page-main.collection-page::after,
  .page-main.setup-page::before,
  .page-main.setup-page::after,
  .page-main.blog-page::before,
  .page-main.blog-page::after,
  .page-main.contact-page::before,
  .page-main.contact-page::after {
    top: 118px;
    height: calc(100vh - 118px);
  }

  .home-strip {
    padding-top: 20px;
  }

  .home-title-wrap h1 {
    white-space: normal;
  }

  .content-panel {
    padding: 20px 16px;
    border-radius: 12px;
    gap: 10px;
  }

  .contact-center-page {
    padding: 56px 16px 24px;
  }

  .contact-panel {
    padding: 28px 18px;
  }

  .content-panel h2 {
    font-size: 1.85rem;
    margin-bottom: 6px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .contact-panel .page-intro {
    font-size: 1.02rem;
    margin: 0 auto 24px;
  }

  .item-list {
    gap: 10px;
    margin-top: 10px;
  }

  .item-title {
    font-size: 1.12rem;
  }

  .item-card {
    padding: 16px 16px;
  }

  .item-list.contact-only {
    gap: 16px;
    margin-top: 0;
  }

  .item-list.contact-only .item-card {
    padding: 20px 16px;
  }

  .contact-panel .item-title {
    font-size: 1.12rem;
  }

  .contact-panel .item-subtitle {
    font-size: 1rem;
  }

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

  .dropdown-toggle {
    font-size: 1.2rem;
    padding: 18px 18px;
  }

  .nested-dropdown-toggle {
    font-size: 1.02rem;
    padding: 15px 16px;
  }

  .archive-list li {
    font-size: 1rem;
  }

  .blog-page {
    padding-top: 24px;
  }

  .blog-home-panel {
    padding: 18px;
  }

  .blog-card-large {
    padding: 20px;
    border-radius: 16px;
    gap: 20px;
  }

  .blog-card-text span {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .blog-card-image-wrap {
    min-height: 170px;
    border-radius: 12px;
    justify-content: center;
  }

  .blog-card-image {
    max-height: 170px;
    border-radius: 12px;
  }

  .article-panel {
    padding: 24px 18px;
  }

  .article-hero h2 {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .article-lead {
    font-size: 1.08rem;
  }

  .article-section h3 {
    font-size: 1.45rem;
  }

  .article-section p,
  .article-note p,
  .software-desc,
  .article-pick p {
    font-size: 1rem;
  }

  .software-card {
    min-height: auto;
  }

  .simple-guide-panel {
    padding: 24px 18px;
  }

  .simple-guide-title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .simple-guide-lead {
    font-size: 1.08rem;
  }

  .simple-guide-section p {
    font-size: 1rem;
  }

  .software-button-stack {
    gap: 10px;
  }

  .software-button {
    width: 100%;
  }

  .site-footer {
    padding: 10px 16px 22px;
  }

  .site-footer p {
    font-size: 0.8rem;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-policy-links {
    gap: 10px;
  }

  .fairuse-panel .about-copy {
    font-size: 1.02rem;
    line-height: 1.75;
  }
}