.widget.thumbnails .grid {
  margin: 0 0 3em 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

#main-wrapper {
  padding: 0;
}

#portal-frame {
  border: 2px solid #9599ff;
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  max-width: 1400px;
  width: calc(100% - 4em);
  overflow: clip;
}

#portal-frame #main-wrapper {
  border-radius: 0 0 8px 8px;
  overflow: clip;
}
#tab-bar {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid #9599ff;
  padding: 0 2em;
  gap: 0.25em;
  justify-content: center;
  max-width: 1400px;
  width: calc(100% - 4em);
  margin: 20px auto 0;
}
.tab-btn {
  position: relative;
  background: #2a1040;
  color: #c1b1c4;
  border: 2px solid #67436e;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 0.55em 1.4em 0.65em;
  font-size: 1.2em;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
  outline: 0;
  bottom: -2px;
}
.tab-btn:hover {
  background: #3a1a55;
  color: #e6e6e6;
  border-color: #9599ff;
}
.tab-btn.active {
  background: #200e2e;
  color: #fa61b9;
  border-color: #9599ff;
  border-bottom-color: #200e2e;
  z-index: 1;
}

#tabs-left {
  display: flex;
  align-items: flex-end;
  gap: 0.25em;
  flex: 1;
  justify-content: center;
}
#tabs-right {
  display: flex;
  align-items: flex-end;
  gap: 0.25em;
}

#tab-overview {
  background: #1a0b28;
  color: #fa61b9;
  border-color: #fa61b9;
}
#tab-overview:hover {
  background: #2a1040;
  border-color: #ff99dd;
  color: #ff99dd;
}
#tab-overview.active {
  background: #200e2e;
  color: #fa61b9;
  border-color: #fa61b9;
  border-bottom-color: #200e2e;
}
#tab-edit {
  background: #1a0b28;
  color: #fa61b9;
  border-color: #fa61b9;
  padding: 0.55em 1em 0.65em;
}
#tab-edit:hover {
  background: #2a1040;
  border-color: #ff99dd;
  color: #ff99dd;
}
#tab-edit.active {
  background: #200e2e;
  border-bottom-color: #200e2e;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
#portal-panel {
  padding: 1em 0;
}

/*============== */
/*============== */
/*============== */

.skeleton-card {
  background: #2a1040;
  border-radius: 8px;
  height: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(149, 153, 255, 0.08) 50%,
    transparent 100%
  );
  animation: skeleton-sweep 1.6s infinite;
  pointer-events: none;
}
@keyframes skeleton-sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.portal-date-header.hidden {
  display: none;
}
.portal-date-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4em 2em 0.4em;
}
.portal-date-calendar {
  display: flex;
  flex-direction: column;
  border: 2px solid #705089;
  border-radius: 6px;
  overflow: hidden;
  min-width: 77px;
  flex: 0 0 auto;
}
.portal-date-month {
  background: #fa61b9;
  color: #200e2e;
  font-size: 1.3em;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.portal-date-day-num {
  background: #2f1443;
  color: #e6e6e6;
  font-family: "GUERRILLA", "Lexend", "Open Sans", sans-serif;
  font-size: 1.7em;
  text-align: center;
  padding: 0.3em 0 0.35em;
  line-height: 1;
}
.portal-date-text {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  min-width: 0;
}
.portal-date-weekday {
  font-family: "GUERRILLA", "Lexend", "Open Sans", sans-serif;
  font-size: 2.5em;
  color: #fa61b9;
  letter-spacing: 0.08em;
  line-height: 1;
}
.portal-date-year {
  font-size: 1.25em;
  color: #9599ff;
  letter-spacing: 0.183em;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .portal-date-header {
    padding: 1.2em 1em 0.3em;
    gap: 0.75em;
  }
  .portal-date-weekday {
    font-size: 1.25em;
  }
}

.portal-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 2em;
}
.banner-card {
  background: #2f1443;
  border: 2px solid #705089;
  border-radius: 8px;
  padding: 1.2em 1.5em;
  color: #e6e6e6;
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.banner-card:hover {
  border-color: #fa61b9;
  background: #3a1a55;
}
.banner-card.alert {
  border-color: #fa61b9;
  background: #3d1650;
}
.banner-content {
  flex: 1;
  min-width: 0;
}
.banner-card h3 {
  color: #e6e6e6;
  font-size: 1.3em;
  margin-bottom: 0.3em;
}

.banner-card.locked .banner-preview {
  filter: blur(4px);
  user-select: none;
}
.lock-inline {
  font-size: 0.75em;
  color: #fa61b9;
  font-weight: 800;
  margin-top: 0.4em;
}
.vod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.gallery-card {
  background: #2f1443;
  border: 2px solid #705089;
  border-radius: 8px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  min-width: 0;
  overflow-wrap: break-word;
}
.gallery-card h3 {
  color: #fa61b9;
  font-size: 1.3em;
  margin: 0;
  text-align: center;
}
.gallery-featured {
  background: #1a0b28;
  border: 2px solid #705089;
  border-radius: 6px;
  padding: 1em;
  color: #e6e6e6;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  min-height: 160px;
  min-width: 0;
  overflow-wrap: break-word;
}
.gallery-featured:hover {
  border-color: #fa61b9;
}
.gallery-featured.locked .featured-body {
  filter: blur(4px);
  user-select: none;
}
.gallery-featured h4,
.banner-card h4 {
  color: #e6e6e6;
  font-size: 1.4em;
  margin-bottom: 0.3em;
  font-weight: 600;
}
.gallery-featured .post-meta,
.banner-card .post-meta {
  display: none;
  font-size: 1.1em;
  color: #c1b1c4;
  margin-bottom: 0.5em;
  font-style: italic;
}
.gallery-featured .featured-body,
.banner-card .banner-preview {
  display: -webkit-box;
  font-size: 1.2em;
  color: #ccc;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.4em;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.gallery-thumbs {
  display: flex;
  gap: 0.5em;
  align-items: stretch;
}
.gallery-thumb {
  flex: 1;
  background: #1a0b28;
  border: 1px solid #705089;
  border-radius: 4px;
  padding: 0.5em;
  font-size: 1.4em;
  color: #ccc;
  min-height: 60px;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.gallery-thumb:hover {
  border-color: #fa61b9;
}
.gallery-thumb.locked {
  filter: blur(2px);
}
.gallery-thumb .thumb-title {
  font-size: 0.7em;
  line-height: 1.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.gallery-arrow-link {
  flex: 0 0 auto;
  background: #1a0b28;
  border: 1px solid #705089;
  border-radius: 4px;
  padding: 0.5em 0.75em;
  color: #9599ff;
  font-size: 1.5em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-arrow-link:hover {
  border-color: #fa61b9;
  color: #fa61b9;
  text-decoration: none;
}
.gallery-empty {
  color: #666;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.85em;
}

/*============== */
/*============== */
/*============== */

#portal-unauthed {
  text-align: center;
  padding: 4em 2em;
}
#portal-unauthed p {
  color: #c1b1c4;
  margin-block: 1.4em;
}
.post-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2em;
}
#queue-panel {
  padding: 3em 1.5em;
}
#queue-panel .col-8 {
  padding-left: 3em;
}
#queue-panel .intro-list {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
#queue-panel .intro-list li {
  padding-left: 0.5em;
  margin-bottom: 0.4em;
}
.qa-item {
  margin-bottom: 1.5em;
}
.qa-item summary {
  font-size: 1.35em;
  font-weight: 800;
  color: #e6e6e6;
  cursor: pointer;
  list-style: none;
  margin-bottom: 0.5em;
}
.qa-item summary::-webkit-details-marker {
  display: none;
}
.qa-item summary::before {
  content: "▶ ";
  font-size: 0.7em;
  color: #9599ff;
  display: inline-block;
  transition: transform 0.2s;
  margin-right: 8px;
}
.qa-item[open] summary::before {
  transform: rotate(90deg);
}
.form-section {
  padding: 15px;
  color: #fff;
  margin-bottom: 20px !important;
  line-height: 1.6;
  display: block;
}
.bg-purple {
  background-color: #301545;
}
.bg-blue {
  background-color: #162553;
}
.field-label {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}
.public-badge {
  font-size: 12px;
  background-color: #e83e8c;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}
.disclaimer {
  font-size: 14px;
  color: #fcc;
  background: rgba(255, 0, 0, 0.1);
  padding: 10px;
  border-left: 4px solid #ff4d4d;
  margin-bottom: 12px;
}
#submit-section {
  position: relative;
}
#missing-fields-banner {
  font-size: 14px;
  color: #fcc;
  background: rgba(255, 0, 0, 0.1);
  padding: 10px;
  border-left: 4px solid #ff4d4d;
  margin-top: 12px;
  visibility: hidden;
}
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper {
  max-height: 400px;
  overflow-y: auto;
}
table.portal-table {
  width: 100%;
  border-collapse: collapse;
}
table.portal-table th {
  position: sticky;
  top: 0;
  background-color: #1e286d;
  z-index: 1;
  border-bottom: 2px solid #9599ff;
  border-right: 1px solid #9599ff;
  padding: 10px;
  text-align: left;
  color: #fff;
}
table.portal-table th:last-child {
  border-right: none;
}
table.portal-table td {
  padding: 10px;
  text-align: left;
  border-right: 1px solid #414587;
}
table.portal-table td:last-child {
  border-right: none;
}
table.portal-table tr {
  border-bottom: 1px solid #414587;
}
table.portal-table tbody tr:nth-child(odd) {
  background-color: #2f1443;
}
table.portal-table tbody tr:nth-child(even) {
  background-color: #3a1a55;
}
table.portal-table tr.completed td {
  text-decoration: line-through;
  color: #888;
}
table.portal-table tr.completed td:first-child::before {
  content: "✅ ";
  text-decoration: none;
  display: inline-block;
  margin-right: 4px;
}
#queue-auth-prompt {
  text-align: center;
  padding: 2em 1em;
  background: #1a0b28;
  border-radius: 8px;
  margin-bottom: 1.5em;
}
#queue-auth-prompt p {
  color: #c1b1c4;
  margin-bottom: 1em;
}
.admin-panel-wrap {
  padding: 3em 1.5em;
}
.admin-section {
  margin-bottom: 3em;
}
.admin-section-header {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 0.75em;
}
.admin-section-header h3 {
  color: #9599ff;
  margin: 0;
}
.icon-btn {
  background: transparent !important;
  border: none !important;
  padding: 4px 6px !important;
  font-size: 1.3em;
  cursor: pointer;
  color: #9599ff !important;
  line-height: 1;
  box-shadow: none !important;
  text-shadow: none !important;
  min-width: 0 !important;
  height: auto !important;
}
.icon-btn:hover {
  color: #fa61b9 !important;
}
.admin-status-inline {
  color: #c1b1c4;
  font-size: 0.82em;
  margin-left: auto;
}
.admin-controls {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
.admin-controls .button {
  margin: 0;
}
#clear-queue-btn {
  background: #c0392b;
  color: #fff;
  font-size: 0.7em;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-weight: 800;
}
#clear-queue-btn:hover {
  background: #e74c3c;
}
.delete-entry-btn {
  background: #c0392b;
  color: #fff;
  font-size: 0.7em;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-weight: 800;
}
.delete-entry-btn:hover {
  background: #e74c3c;
}
.admin-posts-toolbar {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
  font-size: 0.85em;
  color: #ccc;
}
.admin-posts-toolbar input[type="number"] {
  appearance: auto !important;
  width: 70px;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #1a0b28;
  color: #e6e6e6;
  font-size: 0.95em;
}
.admin-posts-toolbar input[type="checkbox"] {
  appearance: auto !important;
  cursor: pointer;
}
.admin-posts-toolbar .bulk-delete-btn {
  background: #c0392b;
  color: #fff;
  font-size: 0.8em;
  padding: 0.4em 1em;
}
#patreon-portal-page
  .admin-posts-toolbar
  .bulk-delete-btn:hover:not([disabled]) {
  background: #e74c3c;
}
.admin-posts-pagination {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1em;
  font-size: 0.85em;
  color: #ccc;
  flex-wrap: wrap;
}
.admin-posts-pagination button {
  background: #67436e;
  color: #fff;
  font-size: 0.8em;
  padding: 0.35em 0.8em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 800;
}
.admin-posts-pagination button:hover:not([disabled]) {
  background: #9599ff;
  color: #200e2e;
}
.admin-posts-pagination button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.admin-posts-pagination input[type="number"] {
  appearance: auto !important;
  width: 60px;
  padding: 3px 5px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #1a0b28;
  color: #e6e6e6;
  font-size: 0.9em;
}
.row-checkbox,
.completed-checkbox {
  appearance: auto !important;
  cursor: pointer;
}
.import-form {
  background: #2f1443;
  border: 2px solid #705089;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2em;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.75em;
  align-items: end;
}
.import-form label {
  color: #ccc;
  font-size: 0.85em;
  display: block;
  margin-bottom: 0.3em;
}
.import-form input,
.import-form select {
  width: 100%;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #1a0b28;
  color: #e6e6e6;
  font-size: 0.9em;
  appearance: auto !important;
}
.import-form button {
  background: #1a6b3c;
  color: #fff;
  font-weight: 800;
  padding: 0.5em 1.2em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.import-form button:hover {
  background: #27a150;
}
#import-status {
  grid-column: 1/-1;
  color: #c1b1c4;
  font-size: 0.85em;
  margin-top: 0.5em;
}

#portal-unauthed {
  text-align: center;
  padding: 3em 1.5em;
}

#portal-unauthed h2 {
  font-size: 2.8em !important;
  margin-bottom: 0.4em;
  line-height: 1.2;
  color: #e5eaff;
}

#portal-unauthed .portal-feature-list {
  display: flex;
  text-align: center;
  margin: 0 auto 1.745em auto;
  flex-direction: column;
  align-items: center;
}

/* THE TOP LINE: "Connect a free Patreon account to:" */
#portal-unauthed .portal-feature-list p:first-of-type {
  font-size: 1.1em !important; /* Smaller than the list items */
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}

/* THE BOTTOM LINE: "...all right from this page" */
#portal-unauthed .portal-feature-list p:last-of-type {
  font-size: 1.3em !important;
  font-weight: 400 !important;
  font-style: italic;
  margin-top: 1.5em;
  color: #c1b1c4;
}

#portal-unauthed .portal-feature-list-itself {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#portal-unauthed .portal-feature-list-itself li {
  display: flex;
  align-items: center;
  font-size: 1.4em !important; /* Main focal point */
  font-weight: 700 !important;
  color: #fa61b9; /* High contrast pink */
  white-space: nowrap;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

#portal-unauthed .portal-feature-list-itself li:not(:first-child)::before {
  content: "•";
  color: #67436e; /* Darker dot so it doesn't distract */
  font-weight: bold;
  margin: 0 0.8em;
}

#portal-unauthed .button {
  font-size: 1.3em !important;
  padding: 0.8em 2.5em !important;
}

@media (max-width: 1000px) {
  #portal-unauthed .portal-feature-list-itself {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto !important;
  }

  #portal-unauthed .portal-feature-list-itself li {
    white-space: normal;
    margin-bottom: 0.8em !important;
    text-align: center;
  }

  #portal-unauthed .portal-feature-list-itself li::before {
    display: none !important; /* Hide dots on mobile/stacked view */
  }
}

/* Legacy support for generic lists in this container */
#portal-unauthed ul:not(.portal-feature-list-itself) {
  list-style: disc !important;
  margin: 0 0 1.5em 2.5em !important;
  padding: 0;
  text-align: center;
}

#portal-unauthed li {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.4em;
  color: #e6e6e6;
}

#portal-unauthed .button {
  font-size: 1.3em !important;
  padding: 0.8em 2.5em !important;
}

@media screen and (max-width: 980px) {
  #tab-bar {
    padding: 0 0.5em;
    width: calc(100% - 2em);
  }
  #portal-frame {
    width: calc(100% - 2em);
  }
  .tab-btn {
    font-size: 1.2em;
    padding: 0.5em 0.9em 0.6em;
  }
  #tab-overview {
    margin-left: 0;
  }
  #queue-panel .col-8 {
    padding-left: 0;
  }
  #queue-panel .row {
    flex-direction: column;
  }
  #queue-panel .row > * {
    width: 100% !important;
    max-width: 100% !important;
  }
  #queue-panel {
    padding: 2em 1em;
  }
  .vod-row {
    grid-template-columns: 1fr;
  }
  .import-form {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 736px) {
  .portal-grid {
    padding: 0.5em 1em;
  }
  #portal-frame {
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent;
  }
  #tab-bar {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0.5em;
  }
  #main-wrapper,
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  #queue-panel {
    padding: 1.5em 0;
  }
  .row {
    margin-left: 0 !important;
    margin-top: 0 !important;
    flex-direction: column;
  }
  .row > * {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 1.5em 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  #queue-panel .col-8 {
    padding-left: 0 !important;
  }
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    margin-bottom: 2em;
  }
  table.portal-table {
    min-width: 450px;
  }
}
.intro-details summary h4 {
  display: inline;
}

.lock-sub {
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
  margin-top: 2px;
}

.lock-sub a {
  color: #fa61b9;
  text-decoration: underline;
}

#tuts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 0;
  align-items: start;
}

#tuts-toc {
  position: sticky;
  top: 1.5em;
  max-height: calc(100vh - 3em);
  overflow-y: auto;
  padding: 1.2em 1.2em 1.2em 1.4em;
  font-size: 1.2em;
  /* background: #1a0b28; */
  /* border-left: 1px solid #705089; */
}

.tuts-toc-title {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9599ff;
  margin: 0 0 0.8em 0;
}

.tuts-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tuts-toc-step;
}

.tuts-toc-item {
  counter-increment: tuts-toc-step;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.tuts-toc-link {
  display: block;
  color: #c1b1c4;
  text-decoration: none;
  padding: 0.4em 0.5em;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.tuts-toc-link::before {
  content: counter(tuts-toc-step) ". ";
  color: #fa61b9;
  font-weight: 800;
  margin-right: 0.3em;
}

.tuts-toc-link:hover {
  color: #e6e6e6;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.tuts-toc-link.is-active {
  color: #e6e6e6;
  background: rgba(149, 153, 255, 0.1);
  border-left-color: #fa61b9;
}

@media (max-width: 900px) {
  #tuts-layout {
    grid-template-columns: 1fr;
  }
  #tuts-toc {
    display: none;
  }
}
