.wrapper-features {
    height: 100%;
    margin: 40px auto 20px auto;
}

.wrapper-errors {
    height: 100%;
    width: 100%;
    margin: 40px auto 20px auto;
}





.category-title {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 1px 1px rgba(0,0,0,0.2); /* Nice layered shadow */
  font-weight: bold;
  /* Optional: increase font size for emphasis */
  font-size: 2.5rem;
  letter-spacing: 1px;

  font-family: "a_AllgidusDstr", "Alice", "Femme Fatale", "Times New Roman", Times, serif;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
}




.container-texture {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  text-align: center; /* For text */
  /* OR, for all child elements (like buttons): */
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 640px) {
  .container-texture {
    padding-left: 12px;
    padding-right: 12px;
  }
}





.features-title {
  color: #fff; /* Or your preferred color */
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 1px 1px rgba(0,0,0,0.2); /* Nice layered shadow */
  font-weight: bold;
  /* Optional: increase font size for emphasis */
  font-size: 2.5rem;
  letter-spacing: 1px;
}

code {
  background: #23201a;
  color: #ebd595;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1em;
  white-space: pre-wrap;
}














/* Ensure padding/border included in width */
*, *::before, *::after {
  box-sizing: border-box;
}

.patch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* space between cards */
  padding: 0;
  margin: 0;
}

/* Default: 1 per row */
.patch-list > .col-md-4 {
  flex: 1 1 100%; /* flex-grow, shrink, basis */
  max-width: 100%;
}

/* From 576px: 2 per row */
@media (min-width: 576px) {
  .patch-list > .col-md-4 {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* From 992px: 3 per row */
@media (min-width: 992px) {
  .patch-list > .col-md-4 {
    flex: 1 1 calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
}

/* Make sure cards inside columns fill width */
.patch-list > .col-md-4 > .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}














/* Card styling */
.card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Image styling */
.card-img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

/* Overlay styling */
.card-img-overlay {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s ease;
  width: 100%;
}

.card-hover:hover .card-img-overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* Text styling */
.card-text {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  background-color: #ffc107;
  padding: 5px 10px;
  border-radius: 0px;
  white-space: normal;
  max-width: 100%;
  text-align: center;
}

.bottom-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
}

/* Optional: Make cards equal height */
.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-background {
    min-height: 250px;
    aspect-ratio: 1280 / 717;
    width: 100%;
    height: auto;
}






.fancy-divider {
  width: 100vw;        /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Align to screen edges, if parent is centered */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
}


.fancy-divider-line {
  flex: 1;
  height: 7px;
  border-radius: 3px;
}

.fancy-divider-line.left {
  background: linear-gradient(
    to right,
    transparent 0%,
    #ede7dd 25%,
    #bca67a 70%,
    #ede7dd 100%
  );
}

.fancy-divider-line.right {
  background: linear-gradient(
    to right,
    #bca67a 0%,
    #ede7dd 30%,
    transparent 100%
  );
}

.fancy-image {
  max-width: 120px;
  height: 48px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.fade-divider {
  height: 2px;
  width: 100%;
  margin: 40px 0;
  background: linear-gradient(
    to right,
    transparent,
    #e2cfa3 50%,
    transparent
  );
  border: none;
}

.container_title {
  margin: 46px 0px 0px 0px;
}





.step-row {
  display: flex;
  align-items: center;
  gap: 16px; /* space between circle and text */
}

.circle-step {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f3eac2 70%, #bfa46d 100%);
  color: #624c1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 2px solid #bfa46d;
}





/* mini bootstrap */
.row-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;         /* Optional: space between columns */
}

.col-6 {
  flex: 1 1 0;
  min-width: 280px;  /* Make responsive for small screens */
  max-width: 50%;
  box-sizing: border-box;
  padding: 0 12px;   /* Optional: side padding */
}

@media (max-width: 768px) {
  .row-flex {
    flex-direction: column;
    gap: 0;
  }
  .col-6 {
    max-width: 100%;
    padding: 0;
  }
}

.row-flex-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;         /* Optional: space between columns */
}













.htp__block-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px; /* Space between buttons */
  margin: 32px 0;
  flex-wrap: wrap; /* Responsive: wrap on small screens */
}

.htp__block-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 32px;
  background: rgba(40, 30, 20, 0.85);
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.htp__block-button:hover {
  box-shadow: 0 4px 24px #bfa46d80;
  background: rgba(80, 50, 20, 0.95);
}

.circle-icon {
  width: 40px;
  height: 40px;
  background: #fff2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-right: 6px;
}

.circle-icon img,
.circle-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}





.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #bfa46d 0%, #faedc7 100%);
  padding: 13px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  font-size: 1.14em;
  transition: background 0.18s, box-shadow 0.18s;
  margin: 0 auto;
  text-shadow: -1px -1px 0 #ac9595, 1px -1px 0 #b79696, -1px 1px 0 #b29191, 1px 1px 0 #bb9e9e;
}

.download-btn:hover {
  background: linear-gradient(90deg, #faedc7 0%, #bfa46d 100%);
  color: #624c1e;
  box-shadow: 0 4px 32px #bfa46d60;
}

.download-btn .circle-icon {
  width: 40px;
  height: 40px;
  background: #fff2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.download-btn .circle-icon svg {
  display: block;
}






.home__container {
  position: relative; /* important */
}

.home__body {
  position: absolute;
  bottom: 140px;
  left: 25px;
}








.accordion-css {
  border-radius: 12px;
  background: rgba(30, 20, 15, 0.70);
  box-shadow: 0 2px 18px rgba(0,0,0,0.17);
  width: 100%;
  margin: 32px 0;
  padding: 0;
}

.accordion-item {
  border-bottom: 1px solid #bfa46d44;
}
.accordion-item:last-child {
  border-bottom: none;
}

/* Hide the default checkbox */
.accordion-checkbox {
  display: none;
}

/* Label styles */
.accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  cursor: pointer;
  font-size: 1.13em;
  font-weight: bold;
  color: #ffe4ae;
  font-family: var(--font-2, 'Cormorant Garamond', serif);
  letter-spacing: 0.03em;
  user-select: none;
  transition: background 0.13s;
  width: 100%;
  box-sizing: border-box;
}

.accordion-label:hover {
  background: linear-gradient(90deg, #3b2b18 60%, #a88e53 100%);
  color: #fff6d1;
}

/* Arrow indicator */
.accordion-label .arrow {
  transition: transform 0.28s cubic-bezier(.54,.01,.57,1.23);
  display: inline-block;
  margin-left: 18px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l5 5 5-5' stroke='%23ffe4ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center/22px;
}

.accordion-checkbox:checked + .accordion-label .arrow {
  transform: rotate(180deg);
}

/* Accordion body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: rgba(52, 36, 25, 0.38);
  color: #f9e9c2;
  font-size: 1em;
  font-family: var(--font-2, 'Cormorant Garamond', serif);
  line-height: 1.7;
  padding: 0 36px;
  transition: max-height 0.28s cubic-bezier(.54,.01,.57,1.23), padding 0.17s;
  width: 100%;
  box-sizing: border-box;
}

.accordion-checkbox:checked + .accordion-label + .accordion-body {
  max-height: 260px; /* adjust as needed */
  padding: 20px 36px 24px 36px;
}

@media (max-width: 640px) {
  .accordion-label,
  .accordion-body {
    padding-left: 14px;
    padding-right: 14px;
  }
}



/* about - Main wrapper to center everything */
.main-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Server header styles */
.server-header {
    background: linear-gradient(to right, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.8) 50%, rgba(51, 51, 51, 0) 100%);
    padding: 20px;
    text-align: center;
    margin-left: 0%; /* Left margin */
    margin-right: 0%; /* Right margin */
}

/* Header title */
.server-header h1 {
    font-size: 2em;
    margin: 0;
}

/* Server info section styles */
.server-info {
    padding: 0px;
}

.info-title h2 {
    font-size: 1.5em;
    color: #C18374;
}

.info-description p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Call to action section styles */
.cta-wrapper {
    padding: 0px;
}

.cta-header h2 {
    font-size: 1.5em;
    color: #C18374;
}

.cta-description p {
    line-height: 1.6;
}

.cta-button-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #C18374;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.cta-button:hover {
    background-color: #FF7F00;
}


.features_blocks {
  margin: 0 auto; 
  display: block;
  text-align: center;
}


/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 30px;
  padding: 0px;
}

/* Card */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 2rem;
  color: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

/* Header */
.feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  /*max-width: 250px;*/
  height: auto;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #ff9800;
}

/* Body */
.feature-body {
  flex: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin: 0;
}

/* Footer */
/* Footer separator (keep if you already have it) */
.feature-footer {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
}

/* Rating system */
.feature-rating {
  display: inline-flex;
  flex-direction: row-reverse; /* highest star first */
  justify-content: center;
  gap: 0.2rem;
  font-size: 2rem;
}

.feature-rating input {
  display: none; /* hide radios */
}

.feature-rating label {
  color: #666; /* dim by default */
  cursor: pointer;
  transition: color 0.2s, -webkit-text-stroke 0.2s;
}

/* Hover (only when not yet voted) */
.feature-rating:not(.voted) label:hover,
.feature-rating:not(.voted) label:hover ~ label {
  -webkit-text-stroke: 2px red;
  color: #fbff03;
}

/* Selected stars = gold */
.feature-rating input:checked ~ label {
  color: #fbff03;
  -webkit-text-stroke: 0;
}

/* Thank-you message */
.vote-message {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #4caf50; /* green */
  display: none;
}




/* Full width modifier */
.feature-card--full {
  grid-column: 1 / -1;
}

.feature-card--full .feature-icon {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Intro text */
.feature-intro {
  font-size: 1rem;
  color: #ccc;
  margin: 0 0 0.75rem;
  text-align: left;
}

/* Preview image */
.feature-preview {
  text-align: center;
  margin-top: 1rem;
}

.feature-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #2a2a2a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


.feature-list {
  list-style: none;          /* remove default bullets */
  padding: 0;
  margin: 0;
  text-align: left;          /* keep aligned even in centered card */
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;      /* space for check icon */
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #ddd;
  font-size: 0.95rem;
}

/* Custom checkmark */
.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;            /* green check */
  font-weight: bold;
}

/* NEW: two-column feature list */
.feature-list-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-list-2col .feature-col {
  flex: 1 1 50%;
  max-width: 50%;
}

.feature-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}












.editor-section {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px 0;
}

/* Section Header */
.section-header {
  font-size: 1.6em;
  font-weight: bold;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 170, 255, 0.4),
               0 0 4px rgba(0, 170, 255, 0.3);
}

.section-header i {
  margin-right: 10px;
  font-size: 1.4em;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 170, 255, 0.4),
               0 0 4px rgba(0, 170, 255, 0.3);
}





/* List */
.section-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 15px;
}

/* Reset li margin since we're making the row full width */
.section-list li {
  margin: 0px;
}

/* Main line in li */
.li-main {
  display: flex;
  align-items: flex-start;
  font-size: 1em;
  font-weight: 500;
  color: #eee;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Green checkbox before each line */
.li-main::before {
  content: "✔"; /* checkmark */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
  background: #27ae60; /* ✅ green */
  border-radius: 4px;  /* rounded square look */
  flex-shrink: 0;
}


.li-main i {
  margin-right: 10px;
  color: #27ae60;
  flex-shrink: 0;
  transition: color 0.2s ease;
}



/* Reward block under main (nested) */
.li-reward {
  margin: 0px 0px 10px 20px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #27ae60;
  color: #c9c9c9;
  font-size: 0.9em;
  border-radius: 4px;
  display: block;
  width: calc(100% - 20px);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.li-reward i {
  color: #27ae60;
  margin-right: 6px;
}






/* Base summary style */
details summary {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin: 8px 0;
  font-size: 1.05em;
  font-weight: 600;
  color: #eee;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: all 0.2s ease;
}

/* Remove default triangle */
details summary::-webkit-details-marker,
details summary::marker {
  display: none;
  content: "";
}

/* Arrow icon (default → right) */
details summary::before {
  content: "▶"; /* right arrow */
  font-size: 0.8em;
  color: #00d2ff;
  margin-right: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Arrow when open (down) */
details[open] summary::before {
  content: "▼"; /* down arrow */
  color: #00d2ff;
}

/* Hover effect */
details summary:hover {
  background: rgba(0, 170, 255, 0.12);
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 170, 255, 0.6);
}

details summary:hover::before {
  color: #27ae60;
}





/* Section text */
.section-text {
  margin: 10px 0 15px;
  font-style: italic;
}

/* Details / Summary */
.editor-details summary {
  cursor: pointer;
  font-weight: bold;
  color: #35b442;
  padding: 4px 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.editor-details summary:hover {
  color: #35b442;
  text-shadow: 0 0 4px rgba(100, 255, 100, 0.4);
}







/* Table */
.editor-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.95em;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.editor-table th {
  background: #1a2b1a; /* dark greenish header */
  color: #d6ffd6;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.editor-table td {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: top;
}

/* zebra striping */
.editor-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.editor-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.07);
}

/* row hover */
.editor-table tbody tr:hover {
  background: rgba(0, 170, 255, 0.15);
  transition: background 0.2s ease;
}


.highlight {
  color: #35b442;
  font-weight: 600;
}








/* --- Base container --- */
.tabskill {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* align items from left */
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding: 0 0 25px 0;
}


/* Hide radios */
.tabskill input[type="radio"] {
  display: none;
}

/* Labels as buttons */
.tabskill label {
  text-align: center;
  cursor: pointer;
  color: #ccc;
  font-size: 0.85em;         /* slightly smaller text */
  margin: 4px;
  padding: 4px 2px;
  transition: all 0.25s ease;
  border-radius: 10px;
  width: 120px;              /* reduced width */
  height: 95px;              /* reduced height */
}

.tabskill label:hover {
  color: #fff;
}

/* Figure + image */
.tabskill label figure {
  margin: 0 auto 5px;
  width: 56px;               /* reduced image size */
  height: 56px;
}

.tabskill label img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.tabskill input[type="radio"]:checked + label {
  color: #fff;
  font-weight: bold;
  padding: 4px 2px; 
  background: linear-gradient(
    145deg,
    rgba(39, 174, 96, 0.25),
    rgba(0, 0, 0, 0.2)
  );
  backdrop-filter: blur(6px);
  border: 2px solid #27ae60;
  box-shadow: 0 0 12px rgba(39,174,96,0.8),
              0 0 24px rgba(39,174,96,0.4);
  transform: scale(1.05);
}

/* Content panels */

.tabskill-content h2 {
  margin-top: 0;
  font-size: 1.4em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
  margin-bottom: 15px;
}











.skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.skill-icon img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  margin-right: 15px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.skill-name h3 {
  margin: 0 0 6px;
  font-size: 1.1em;
  color: #fff;
}

.skill-name p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.skill-name p span {
  font-weight: bold;
  color: #27ae60;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}





.class-title {
  font-size: 26px;
  line-height: 58px;
  height: 58px;
  color: #ffb300; /* golden yellow */
  margin-bottom: 10px;
  font-weight: bold;
}

.skill-desc {
  font-size: 1.2em;
  margin: 0;
  color: #fff;
}

.skill-type {
  font-size: 1em;
  font-weight: normal;
  margin: 5px 0 0;
  color: #ccc;
}

.skill-type span {
  font-weight: bold;
  color: #27ae60;
}







/* right sidebar */
@media only screen and (min-width: 75em) {
  .info__nav-list {
    display: flex;
    flex-direction: column;
    height: 100vh; /* fill available height */
    position: sticky;
    top: 0;
    left: 0;

    /* hide scrollbar */
    overflow-y: hidden;

    /* optional spacing control */
    gap: 0.25rem;
    font-size: 0.85rem; /* smaller font */
  }

  .info__nav-list > * {
    min-height: 0;     /* important for flex shrink */
  }
}

.info__link-icon {
  margin: 5px 0px 5px 10px;
  padding: 5px 5px 5px 5px;
}

.info__nav-link {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

@media only screen and (min-width: 40em) {
  .info__link-icon {
    --link-icon-w: 2.25rem;
    --link-icon-h: 2.25rem;
  }
}




