@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");

:root {
  --qc-orange: rgb(210, 120, 40);
  --qc-orange-rgba: rgba(210, 120, 40, 0.6);
  --qc-ink: #1a1a1a;
  --qc-text: #364153;
  --qc-border: #e5e7eb;
  --qc-bg: #ffffff;
  --qc-surface: #ffffff;
  --qc-surface-2: #f8fafc;
  --qc-muted: #6b7280;
  --qc-text-strong: #111827;
  --qc-red: #c10000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--qc-text);
  background: var(--qc-bg);
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
}

.grid-content {
  display: grid;
  grid-template-columns: minmax(0, 17fr) minmax(0, 3fr);
  gap: 16px;
  padding-inline: 1rem;
  width: 100%;
  flex: 1;
}

.content{
 
  min-width: 0;
}
.main-sponsor{
  background-color: blue;
  min-width: 0;
  padding: 32px 0px;
  margin-top: 32px;
  height: 300px;
}

.main-sponsor__title{
  margin: 0;
  text-align: center;
  color: #ffffff;
}

.side-sponsors{
  
  min-width: 0;
  padding: 32px 0px;
  
}

.qc-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--qc-border);
}

.qc-navbar__container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 16px;
  max-width: 1980px;
  margin: 0 auto;
}

.qc-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.8px;
}

.qc-navbar__brand-primary {
  color: var(--qc-orange);
}

.qc-navbar__brand-secondary {
  color: var(--qc-ink);
}

.qc-navbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.qc-navbar__link {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;

  letter-spacing: 0.35px;
  color: var(--qc-text);
  text-decoration: none;
  white-space: nowrap;
}

.qc-navbar__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.qc-navbar__caret {
  font-size: 12px;
  margin-left: 6px;
}

.qc-navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--qc-surface);
  border: 1px solid var(--qc-border);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  padding: 10px;
  display: none;
  z-index: 50;
}

.qc-navbar__dropdown-link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--qc-text);
  font-family: "Oswald", sans-serif;
  font-size: 15px;
}

.qc-navbar__dropdown-link:hover {
  background: var(--qc-surface-2);
}

.qc-navbar__item:hover .qc-navbar__dropdown,
.qc-navbar__item:focus-within .qc-navbar__dropdown {
  display: block;
}

.qc-navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.qc-navbar__actions:last-child {
  margin-right: 0;
}

.qc-search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}

.qc-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qc-search-panel {
  width: min(820px, 100%);
  background: #1f2328;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.qc-search-overlay.is-open .qc-search-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.qc-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.qc-search-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 0.6px;
  color: #e5e7eb;
}

.qc-search-close {
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.qc-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2b2f36;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qc-search-icon {
  width: 18px;
  height: 18px;
  color: #9ca3af;
}

.qc-search-icon svg {
  width: 100%;
  height: 100%;
}

.qc-search-input {
  background: transparent;
  border: none;
  color: #f3f4f6;
  width: 100%;
  font-size: 16px;
  outline: none;
}

.qc-search-input::placeholder {
  color: #9ca3af;
}

.qc-search-results {
  margin-top: 12px;
  background: #1b1f24;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 360px;
  overflow: auto;
  padding: 4px;
}

.qc-search-hint {
  padding: 12px;
  font-size: 14px;
  color: #9ca3af;
}

.qc-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qc-search-item + .qc-search-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qc-search-link {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #e5e7eb;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.qc-search-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.qc-search-link__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.qc-search-link__meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #9ca3af;
}

.qc-icon-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--qc-ink);
  cursor: pointer;
  padding: 0;
  background: none;
  appearance: none;
}

.qc-icon-button--moon {
  color: var(--qc-orange);
}

.qc-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.qc-icon--sun {
  display: none;
  color: #fbbf24;
}

.qc-nav-menu-wrap {
  position: relative;
  display: none;
}

.qc-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  height: 100vh;
  min-width: 0;
  background: var(--qc-surface);
  border: 1px solid var(--qc-border);
  border-radius: 16px 0 0 16px;
  box-shadow: -18px 0 40px rgba(15, 23, 42, 0.2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  pointer-events: none;
}

.qc-nav-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.qc-nav-menu__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--qc-border);
  background: var(--qc-surface-2);
  color: var(--qc-text-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 4px;
}

.qc-nav-menu__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.qc-nav-menu__link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--qc-text);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;{% block content %}
            {% include 'components/hero/hero.html#hero' %}
            {% include 'components/newsfeed/newsfeed.html#newsfeed' %}
          {% endblock %}
}

.qc-nav-menu__link:hover {
  background: var(--qc-surface-2);
  color: var(--qc-text-strong);
}

.qc-nav-menu__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qc-nav-menu__sublinks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 10px;
}

.qc-nav-menu__sublink {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--qc-text);
  font-size: 14px;
}

.qc-nav-menu__sublink:hover {
  background: var(--qc-surface-2);
  color: var(--qc-text-strong);
}

.qc-nav-open {
  overflow: hidden;
}

.qc-user-menu {
  position: relative;
  padding: 0;
  margin: 0;
}

.qc-user-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--qc-orange);
  cursor: pointer;
  padding: 0;
  background: none;
}

.qc-user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.qc-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--qc-surface);
  border: 1px solid var(--qc-border);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}

.qc-user-dropdown.is-open {
  display: flex;
}

.qc-user-dropdown__name {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: var(--qc-text-strong);
  padding: 6px 8px;
}

.qc-user-dropdown__link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--qc-text);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
}

.qc-user-dropdown__link:hover {
  background: var(--qc-surface-2);
  color: var(--qc-text-strong);
}

@media (max-width: 1100px) {
  .qc-navbar {
    padding: 0 24px;
  }
  .qc-nav-menu-wrap {
    display: block;
  }
}

@media (max-width: 1279px) {
  .qc-navbar__links {
    display: none;
  }

  .qc-icon-button--menu {
    display: inline-flex;
  }

  .qc-navbar__actions {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .qc-icon-button--menu {
    display: none;
  }

  .qc-nav-menu {
    display: none;
  }
}

@media (max-width: 860px) {
  .qc-navbar {
    padding: 0 12px;
  }

  .qc-navbar__container {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 8px;
    row-gap: 10px;
  }

  .qc-navbar__actions {
    width: auto;
  }
}

.qc-hero {
  padding: 32px 0 0;
  
 
}

.qc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.qc-hero__main,
.qc-hero__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
}

.qc-hero__main {
  height: 500px;
  background: #101828;
}

.qc-hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
}

.qc-hero__card {
  height: 242px;
}

.qc-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-hero__image--bottom {
  object-position: 50% 50%;
}

.qc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0)
  );
}

.qc-hero__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.qc-hero__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
}

.qc-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.qc-hero__tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 8px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

.qc-hero__tag--breaking {
  background: #e7000b;
  opacity: 0.871;
}

.qc-hero__tag--category {
  background: var(--qc-orange);
}

.qc-hero__title {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.qc-hero__summary {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #f3f4f6;
  max-width: 748px;
}

.qc-hero__card-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.qc-hero__category {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--qc-orange);
  margin-bottom: 4px;
}

.qc-hero__card-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24.75px;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .qc-hero {
    padding: 24px;
  }

  .qc-hero__grid {
    grid-template-columns: 1fr;
  }

  .qc-hero__side {
    height: auto;
    flex-direction: row;
  }

  .qc-hero__card {
    height: 220px;
    flex: 1;
  }
}

@media (max-width: 860px) {
  .qc-hero {
    padding: 16px 12px 0;
  }

  .qc-hero__main {
    height: 420px;
  }

  .qc-hero__side {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .qc-hero__main {
    height: 360px;
  }

  .qc-hero__content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .qc-hero__title {
    font-size: 18px;
    line-height: 24px;
  }

  .qc-hero__summary {
    font-size: 14px;
    line-height: 20px;
  }

  .qc-hero__card {
    height: 200px;
  }
}

.qc-page {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.qc-newsfeed__layaut {
  display: flex;
 
  width: 100%;
}
.qc-newsfeed {
  padding-block: 32px;
  width: 100%;
}

.qc-heading {
  border-left: 4px solid var(--qc-orange);
  padding-left: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #1d293d;
  margin-bottom: 24px;
}

.qc-newsfeed__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.qc-news-card {
  display: flex;
  gap: 6px;
  
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.qc-newsfeed__list .qc-news-card,
.qc-volanta__grid .qc-news-card,
.qc-related__grid .qc-news-card {
  display: flex;
  flex-direction: column;
  
  border-radius: 16px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

.qc-newsfeed__list .qc-news-card:hover,
.qc-volanta__grid .qc-news-card:hover,
.qc-related__grid .qc-news-card:hover {
  /*  border-color: var(--qc-orange-rgba); */
  box-shadow:
    0 1px 3px var(--qc-orange-rgba),
    0 1px 2px -1px var(--qc-orange-rgba);
}

.qc-newsfeed__list .qc-news-card__media,
.qc-volanta__grid .qc-news-card__media,
.qc-related__grid .qc-news-card__media {
  width: 100%;
  
  
  
  overflow: hidden;
}

.qc-newsfeed__list .qc-news-card__body,
.qc-volanta__grid .qc-news-card__body,
.qc-related__grid .qc-news-card__body {
  padding: 0 16px 16px 16px;
  color: inherit;
  flex: 1;
}

.qc-newsfeed__list .qc-news-card__title-container,
.qc-volanta__grid .qc-news-card__title-container,
.qc-related__grid .qc-news-card__title-container {
  display: block;
  min-height: 50px;
}

.qc-newsfeed__list .qc-news-card__title,
.qc-volanta__grid .qc-news-card__title,
.qc-related__grid .qc-news-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qc-newsfeed__list .qc-news-card__subtitle,
.qc-volanta__grid .qc-news-card__subtitle,
.qc-related__grid .qc-news-card__subtitle {
  display: inline;
}

.qc-newsfeed__list .qc-news-card--title-single .qc-news-card__title-container,
.qc-volanta__grid .qc-news-card--title-single .qc-news-card__title-container,
.qc-related__grid .qc-news-card--title-single .qc-news-card__title-container {
  -webkit-line-clamp: 5;
 
}

.qc-newsfeed__list .qc-news-card__author,
.qc-volanta__grid .qc-news-card__author,
.qc-related__grid .qc-news-card__author {
  margin-top: auto;
}

.qc-newsfeed__list .qc-news-card__link,
.qc-volanta__grid .qc-news-card__link,
.qc-related__grid .qc-news-card__link {
  position: absolute;
  inset: 0;

  z-index: 3;
}

.qc-newsfeed__list .qc-news-card__body,
.qc-newsfeed__list .qc-news-card__media,
.qc-volanta__grid .qc-news-card__body,
.qc-volanta__grid .qc-news-card__media,
.qc-related__grid .qc-news-card__body,
.qc-related__grid .qc-news-card__media {
  position: relative;
  z-index: 1;
}

.qc-volanta__grid .qc-news-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.qc-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
  aspect-ratio: 1 / 1;
  background: #101828;
  grid-column: span 2;
  grid-row: span 2;
}

.qc-hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0)
  );
}

.qc-hero-card__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.qc-hero-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.qc-hero-card__tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffffff;
}

.qc-hero-card__tag--category {
  background: var(--qc-orange);
}

.qc-hero-card__title {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.qc-hero-card__summary {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #f3f4f6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qc-hero-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.qc-news-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;
  background: #e5e7eb;
}

.qc-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 100px;
}

.qc-news-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.qc-news-card__volanta {
  color: var(--qc-orange);
  letter-spacing: 0.7px;
}

.qc-news-card__time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.qc-news-card__clock {
  width: 12px;
  height: 12px;
}

.qc-news-card__title-container {
  line-height: 25px;
}

.qc-news-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #1a1a1a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qc-news-card__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #364153;
}

.qc-news-card__author {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  margin: 0;
}


.qc-newsfeed__ad {
  border: 1px solid #d1d5dc;
  border-radius: 10px;
  background: #f3f4f6;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #4a5565;
}

.qc-newsfeed__list .qc-newsfeed__ad,
.qc-newsfeed__list .qc-newsfeed__empty {
  grid-column: 1 / -1;
}
.qc-newsfeed__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 24px;
}
.qc-newsfeed__ad--side {
  border: 1px solid #d1d5dc;
  border-radius: 10px;
  background: #f3f4f6;
  width: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #4a5565;
}

.qc-newsfeed__empty {
  border: 1px dashed #d1d5dc;
  border-radius: 10px;
  padding: 24px;
  font-family: Arial, sans-serif;
  color: #4a5565;
}

.qc-admin {
  padding: 32px 132px 64px;
}

.qc-admin__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.qc-admin__editor,
.qc-admin__table {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.qc-admin__title {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #1d293d;
}

.qc-admin__grid {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #364153;
}

.qc-admin__grid th,
.qc-admin__grid td {
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.qc-admin__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.qc-admin__actions form {
  margin: 0;
}

.qc-admin__link {
  background: none;
  border: none;
  color: #1d293d;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.qc-admin__link--danger {
  color: #c0392b;
}

.qc-redacciones {
  padding: 24px 0 0;


  min-height: calc(100vh - 64px);
  max-width: 1280px;
  margin: 0 auto;
}

.qc-redacciones-nav {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.qc-redacciones-nav__links {
  display: flex;
  gap: 12px;
  width: 100%;
}

.qc-redacciones-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
  background: transparent;
}

.qc-redacciones-nav__link.is-active {
  background: #e2e8f0;
  color: #111827;
}

.qc-redacciones-nav__icon {
  width: 18px;
  height: 18px;
}

.qc-redacciones-nav__icon svg {
  width: 100%;
  height: 100%;
}

.qc-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qc-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.qc-dashboard__card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qc-dashboard__label {
  font-size: 13px;
  color: #6b7280;
}

.qc-dashboard__value {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.qc-dashboard__meta {
  font-size: 13px;
  color: #6b7280;
}

.qc-dashboard__panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
}

.qc-dashboard__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.qc-dashboard__panel-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #111827;
}

.qc-dashboard__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qc-dashboard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.qc-dashboard__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qc-dashboard__row-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.qc-dashboard__row-meta {
  color: #9ca3af;
  font-size: 13px;
}

.qc-dashboard__empty {
  color: #9ca3af;
}

.qc-footer {
  background: #1f1f1f;
  color: #9ca3af;
  
}

.qc-footer__container {
  max-width: 1980px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 16px;
  font-size: 14px;
}

.qc-footer__copy {
  letter-spacing: 0.2px;
}

.qc-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .qc-footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .qc-redacciones {
    padding: 24px;
  }

  .qc-dashboard__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qc-panel__filters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .qc-dashboard__cards {
    grid-template-columns: 1fr;
  }

  .qc-redacciones-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .qc-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.qc-panel {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qc-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.qc-panel__title {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: #111827;
}

.qc-panel__subtitle {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #6b7280;
}

.qc-panel__filters {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.6fr) minmax(0, 0.6fr);
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
}

.qc-panel__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
}

.qc-panel__search-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

.qc-panel__search-icon svg {
  width: 100%;
  height: 100%;
}

.qc-panel__input {
  background: transparent;
  border: none;
  color: #111827;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.qc-panel__input::placeholder {
  color: #9ca3af;
}

.qc-panel__select {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.qc-featured-index {
  min-width: 90px;
  padding: 6px 10px;
  font-size: 13px;
}

.qc-panel__table {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.qc-panel-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: #111827;
  font-size: 14px;
}

.qc-panel-table thead {
  background: #f1f5f9;
}

.qc-panel-table th,
.qc-panel-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.qc-panel-sort {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.qc-panel-sort:hover {
  text-decoration: underline;
}

.qc-panel-sort__icon {
  margin-left: 6px;
  font-size: 12px;
  color: #94a3b8;
}

.qc-panel-table__check {
  width: 40px;
  vertical-align: middle;
}

.qc-panel-table__title {
  font-weight: 600;
  color: #111827;
}

.qc-panel-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  color: #475569;
  background: #f8fafc;
}

.qc-panel-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  line-height: 1;
}

.qc-panel-status--published {
  background: #e2e8f0;
  color: #334155;
}

.qc-panel-status--draft {
  background: #f8fafc;
  color: #64748b;
}

.qc-panel-table__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qc-panel-table__actions form {
  margin: 0;
}

.qc-panel-action {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.qc-panel-action svg {
  width: 16px;
  height: 16px;
}

.qc-panel-action:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.qc-panel-action--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.qc-panel-action--danger {
  color: #94a3b8;
}

.qc-redacciones .qc-button--primary {
  background: #334155;
  border-color: #334155;
  color: #f8fafc;
}

.qc-redacciones .qc-button--ghost {
  background: #f1f5f9;
}

.qc-editor__title {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #1d293d;
}

.qc-editor__status {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #4a5565;
}

.qc-editor__errors {
  margin-bottom: 12px;
  padding: 10px 12px;
  background: #fdecea;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #c0392b;
}

.qc-editor__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qc-editor__label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #4a5565;
}

.qc-editor__input,
.qc-editor__textarea,
.qc-editor__form input[type="file"] {
  width: 100%;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.qc-editor__textarea {
  resize: vertical;
}

.qc-editor__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.qc-editor__button {
  background: var(--qc-orange);
  border: none;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.qc-editor__button--ghost {
  background: #f3f4f6;
  color: #1d293d;
}

.qc-article {
  padding-top: 32px;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--qc-text);
}

.qc-article__volanta {
  color: var(--qc-orange);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 14px;
  margin: 0 0 8px;
}

.qc-article__title {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--qc-text-strong);
}

.qc-article__subtitle {
  font-size: 18px;
  color: var(--qc-text);
}

.qc-article__meta {
  margin: 16px 0;
  color: var(--qc-muted);
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.qc-article__body {
  font-size: 16px;
  line-height: 1.6;
}

.qc-article__volanta-link {
  color: var(--qc-orange);
  text-decoration: none;
}

.qc-article__volanta-link:hover {
  text-decoration: underline;
}

.qc-article-layout {
  padding-block: 32px;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  align-items: start;
}

.qc-article--detail {
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
}

.qc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--qc-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.qc-breadcrumb__link {
  color: var(--qc-muted);
  text-decoration: none;
}

.qc-breadcrumb__link:hover {
  color: var(--qc-text-strong);
}

.qc-breadcrumb__sep {
  color: var(--qc-muted);
}

.qc-breadcrumb__current {
  color: var(--qc-orange);
}

/* .qc-article__header {
  max-width: 860px;
} */

.qc-article__meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--qc-muted);
  margin-bottom: 12px;
}

.qc-article__media {
  display: block;
  margin: 16px 0;
}

.qc-article__photo-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.qc-article__photo {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
 
}

.qc-article__photo-caption {
  padding: 8px 12px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--qc-muted);
  background: var(--qc-surface);
}

.qc-article__share {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--qc-border);
  border-radius: 16px;
  background: var(--qc-surface);
}

.qc-article__share-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--qc-muted);
}

.qc-share-button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--qc-border);
  background: var(--qc-surface-2);
  color: var(--qc-text-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.qc-share-button:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 120, 40, 0.5);
}

.qc-share-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.qc-share-button--whatsapp {
  color: #16a34a;
}

.qc-share-button--facebook {
  color: #2563eb;
}

.qc-share-button--x {
  color: #111827;
}

.qc-share-button--link {
  color: var(--qc-text-strong);
}

.qc-share-status {
  font-size: 12px;
  color: var(--qc-muted);
  opacity: 0;
  transition: opacity 0.2s ease;
  min-height: 16px;
}

.qc-share-status.is-visible {
  opacity: 1;
}

.qc-article__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--qc-text);
}

.qc-article__body figure.image {
  margin: 20px auto;
  max-width: 100%;
}

.qc-article__body figure.image img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
  margin: 0 auto;
}

.qc-article__body figure.image figcaption {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--qc-muted);
}

.qc-article__author {
  margin-top: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--qc-text-strong);
}

.qc-article__signature {
  color: var(--qc-muted);
  font-size: 13px;
}

.qc-related {
  padding-block: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.qc-article-ad {
  align-self: start;
  position: sticky;
  top: 24px;
}

.qc-article-ad__box {
  min-height: 68vh;
  width: 100%;
  background: #111111;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  color: #f3f4f6;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.qc-related__title {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: var(--qc-text-strong);
}

.qc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qc-article__actions {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
  width: 100%;
}

.qc-share-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qc-action-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--qc-border);
  background: var(--qc-surface);
  color: var(--qc-text-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.qc-action-count {
  color: var(--qc-muted);
  font-size: 12px;
}

.qc-captcha {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  color: #111827;
  width: fit-content;
}

.qc-captcha__checkbox {
  width: 16px;
  height: 16px;
}

.qc-captcha__label {
  font-size: 14px;
}

.qc-like-button {
  gap: 8px;
  border-radius: 12px;
  padding: 6px 10px;
}

.qc-like-button svg {
  width: 16px;
  height: 16px;
}

.qc-like-button.is-active {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.4);
}

.qc-comments {
  margin-top: 32px;
  width: 50%;
}

.qc-comments__title {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--qc-text-strong);
}

.qc-comments__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.qc-comments__notice {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(153, 27, 27, 0.12);
  color: #b91c1c;
  margin-bottom: 16px;
}

.qc-comments__login {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--qc-text-strong);
  text-decoration: none;
  font-weight: 600;
}

.qc-comments__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qc-comments__empty {
  color: var(--qc-muted);
}

.qc-comment {
  border: 1px solid var(--qc-border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--qc-surface);
}

.qc-comment--reply {
  margin-left: 24px;
  border-radius: 10px;
}

.qc-comment__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--qc-muted);
  margin-bottom: 6px;
}

.qc-comment__author {
  color: var(--qc-text-strong);
  font-weight: 600;
}

.qc-comment__body {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--qc-text);
}

.qc-comment__body--muted {
  color: var(--qc-muted);
  font-style: italic;
}

.qc-comment__status {
  display: inline-flex;
  font-size: 11px;
  color: var(--qc-muted);
  margin-bottom: 8px;
}

.qc-comment__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qc-action-link {
  border: none;
  background: none;
  color: var(--qc-text-strong);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.qc-comment__reply summary,
.qc-comment__edit summary {
  list-style: none;
  cursor: pointer;
}

.qc-comment__reply summary::-webkit-details-marker,
.qc-comment__edit summary::-webkit-details-marker {
  display: none;
}

.qc-comment__reply form,
.qc-comment__edit form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qc-comment__replies {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qc-alley {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 0 0;
}

.qc-alley__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.qc-alley__title {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--qc-text-strong);
}

.qc-alley__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--qc-muted);
  max-width: 520px;
}

.qc-alley__filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.qc-filter {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--qc-border);
  text-decoration: none;
  color: var(--qc-text);
  font-size: 12px;
  font-weight: 600;
}

.qc-filter.is-active {
  background: var(--qc-orange);
  border-color: var(--qc-orange);
  color: #111111;
}

.qc-alley__composer {
  display: none;
  margin-bottom: 24px;
}

.qc-alley__composer.is-open {
  display: block;
}

.qc-alley__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qc-alley-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--qc-border);
  background: var(--qc-surface);
  position: relative;
}

.qc-alley-card__media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0b0b0b;
}

.qc-alley-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-alley-card__placeholder {
  width: 100%;
  height: 100%;
  background: #101828;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-family: "Oswald", sans-serif;
  font-size: 64px;
}

.qc-alley-card__placeholder--large {
  height: 320px;
  font-size: 72px;
  border-radius: 12px;
}

.qc-alley-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qc-alley-card__author {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}

.qc-alley-card__time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.qc-alley-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.qc-alley-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  overflow: hidden;
}

.qc-alley-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-alley-card__author-block {
  display: flex;
  flex-direction: column;
}

.qc-alley-card__footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qc-alley-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.qc-alley-card__stats {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.qc-alley-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qc-alley-card__stat svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.qc-alley-card__tag {
  color: var(--qc-orange);
  font-weight: 600;
}

.qc-alley-card__badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #111111;
  background: #f59e0b;
  text-transform: uppercase;
}

.qc-alley-card__badge--fed-chaquena {
  background: #f97316;
}

.qc-alley-card__badge--abr {
  background: #f59e0b;
}

.qc-alley-card__badge--saenzpenense {
  background: #22c55e;
}

.qc-alley-card__badge--sudoeste {
  background: #0ea5e9;
}

.qc-alley-card__badge--nacional {
  background: #ef4444;
}

.qc-alley-card__badge--internacional {
  background: #8b5cf6;
}

.qc-alley-card__badge--formativo {
  background: #10b981;
}

.qc-alley-card__badge--la-muchachada {
  background: #eab308;
}

.qc-alley-card__badge--alley-oops {
  background: #f97316;
}

.qc-alley-card__badge--default {
  background: #94a3b8;
}

.qc-alley-detail {
  padding: 32px 0 0;
  max-width: 1280px;
  margin: 0 auto;
}

.qc-alley-detail__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.qc-alley-detail__meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--qc-muted);
  margin-bottom: 8px;
}

.qc-alley-detail__title {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  color: var(--qc-text-strong);
}

.qc-alley-detail__subtitle {
  margin: 0 0 16px;
  color: var(--qc-text);
}

.qc-alley-detail__tag {
  background: rgba(210, 120, 40, 0.14);
  color: var(--qc-orange);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.qc-alley-detail__media {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.qc-alley-detail__media img {
  width: 100%;
  border-radius: 12px;
  max-height: 480px;
  object-fit: cover;
}

.qc-alley-detail__video iframe {
  width: 100%;
  min-height: 360px;
  border-radius: 12px;
}

.qc-alley-detail__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--qc-text);
}

.qc-news-card--compact {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.qc-news-card--compact .qc-news-card__media {
  width: 100%;
  height: 180px;
  border-radius: 0;
}

.qc-news-card--compact .qc-news-card__body {
  padding: 16px;
}

.qc-news-card--compact .qc-news-card__title {
  font-size: 18px;
}

@media (max-width: 1100px) {
  .qc-newsfeed,
  .qc-admin,
  .qc-article-layout {
    padding: 24px;
  }

  .qc-admin__layout {
    grid-template-columns: 1fr;
  }

  .qc-related {
    padding: 0 24px 48px;
  }

  .qc-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qc-article-layout {
    grid-template-columns: 1fr;
  }

  .qc-article-ad__box {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .qc-newsfeed,
  .qc-admin,
  .qc-article-layout {
    padding: 16px 12px;
  }

  .qc-news-card {
    flex-direction: column;
  }

  .qc-news-card__media {
    width: 100%;
    height: 180px;
  }

  .qc-article__media {
    grid-template-columns: 1fr;
  }

  .qc-article__share {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .qc-article__share-label {
    width: 100%;
    text-align: left;
  }

  .qc-related {
    padding: 0 12px 40px;
  }

  .qc-related__grid {
    grid-template-columns: 1fr;
  }
}

.qc-volanta {
  padding-block: 32px;
  
  margin: 0 auto;
  min-height: 91vh;
}

.qc-volanta__header {
  margin-bottom: 24px;
}

.qc-volanta__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  color: #1d293d;
}

.qc-volanta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.qc-volanta__empty {
  border: 1px dashed #d1d5dc;
  border-radius: 10px;
  padding: 24px;
  font-family: Arial, sans-serif;
  color: #4a5565;
}

.qc-volanta-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  padding: 12px;
  gap: 12px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
}

.qc-volanta-card--feature {
  grid-column: span 1;
  grid-row: span 1;
}

.qc-volanta-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 60%;
  flex: 0 0 60%;
  border-radius: 12px;
  overflow: hidden;
}

.qc-volanta-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-volanta-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.qc-volanta-card__meta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #667085;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qc-volanta-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #1a1a1a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3em * 2);
}

.qc-volanta-card__subtitle {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #475467;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}

.qc-volanta-card__author {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #4a5565;
  margin: auto 0 0;
}

.qc-volanta-card__link {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  z-index: 3;
}

.qc-volanta-card__body,
.qc-volanta-card__media {
  position: relative;
  z-index: 1;
}

.qc-volanta-card:hover {
  border-color: var(--qc-orange);
}

@media (max-width: 1200px) {
  .qc-volanta {
    padding: 24px;
  }

  .qc-volanta__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .qc-newsfeed__layaut {
    grid-template-columns: 2fr;
  }
  .qc-newsfeed__sidebar {
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: 0;
  }
}

@media (max-width: 960px) {
  .qc-newsfeed__layaut {
    grid-template-columns: 1fr;
  }

  .qc-volanta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qc-volanta__grid .qc-news-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .qc-volanta {
    padding: 16px 12px;
  }
  .qc-newsfeed__list {
    grid-template-columns: 1fr;
  }
  .qc-newsfeed__sidebar {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    top: 0;
  }

  .qc-volanta__grid {
    grid-template-columns: 1fr;
  }

  .qc-volanta__grid .qc-news-card--feature {
    grid-column: span 1;
    grid-row: span 1;
  }
  .qc-footer,
  .qc-footer__container {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.qc-compose {
  padding-top: 24px;

  min-height: calc(100vh - 64px);
  max-width: 1280px;
  margin: 0 auto;
}

.qc-compose__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.qc-compose__heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qc-compose__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #4b5563;
}

.qc-compose__back-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #667085;
}

.qc-compose__back-icon svg {
  width: 14px;
  height: 14px;
}

.qc-compose__title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 0.6px;
  color: #101828;
}

.qc-compose__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.qc-compose__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #6b7280;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.qc-compose__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}

.qc-compose__status.is-active {
  color: #92400e;
  border-color: rgba(210, 120, 40, 0.4);
  background: rgba(210, 120, 40, 0.08);
}

.qc-compose__status.is-active::before {
  background: var(--qc-orange);
  animation: qc-pulse 1s ease-in-out infinite;
}

.qc-button {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #1d293d;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.qc-button--ghost {
  background: #f9fafb;
}

.qc-button--outline {
  background: #ffffff;
}

.qc-button--primary {
  background: var(--qc-orange);
  border-color: var(--qc-orange);
  color: #ffffff;
}

.qc-compose__content {
  width: 100%;
}

.qc-compose__form {
  position: relative;
}

.qc-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #6b7280;
}

.qc-loading__spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  border-top-color: var(--qc-orange);
  animation: qc-spin 0.8s linear infinite;
}

.qc-loading--page {
  padding: 24px;
  min-height: 220px;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  justify-content: center;
  width: 100%;
}

.qc-loading--form {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.qc-compose__form.htmx-request .qc-loading--form {
  opacity: 1;
  pointer-events: all;
}

.qc-compose__errors {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #fdecea;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #c0392b;
}

.qc-compose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}

.qc-compose__main,
.qc-compose__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.qc-card__header {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #101828;
  margin-bottom: 12px;
}

.qc-field__label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.qc-field__input,
.qc-field__textarea,
.qc-field__select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #111827;
}

.qc-field__textarea {
  resize: vertical;
  min-height: 90px;
}

.qc-field__select {
  appearance: none;
}

.qc-field__meta {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #667085;
}

.qc-uploader {
  position: relative;
  border: 1px dashed #d1d5dc;
  border-radius: 12px;
  padding: 24px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: #6b7280;
  cursor: pointer;
}

.qc-uploader__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.qc-uploader__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98a2b3;
}

.qc-uploader__icon svg {
  width: 18px;
  height: 18px;
}

.qc-uploader__title {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #475467;
}

.qc-uploader__subtitle {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #98a2b3;
}

.qc-uploader--has-image {
  min-height: 60px;
  padding: 12px;
  border-style: solid;
  background: #f9fafb;
}

.qc-uploader--has-image .qc-uploader__title {
  font-size: 12px;
}

.qc-uploader--hidden {
  display: none;
}

/* Image Preview */
.qc-image-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f3f4f6;
}

.qc-image-preview__img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.qc-image-preview__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.qc-image-preview__btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.qc-image-preview__btn svg {
  width: 18px;
  height: 18px;
}

.qc-image-preview__btn--rotate {
  background: rgba(255, 255, 255, 0.9);
  color: #475467;
}

.qc-image-preview__btn--rotate:hover {
  background: #ffffff;
  color: #1f2937;
  transform: rotate(45deg);
}

.qc-image-preview__btn--delete {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.qc-image-preview__btn--delete:hover {
  background: #dc2626;
  transform: scale(1.05);
}

.qc-image-preview__btn--replace {
  background: rgba(15, 23, 42, 0.65);
  color: #f8fafc;
}

.qc-image-preview__btn--replace:hover {
  background: #0f172a;
  transform: scale(1.05);
}

.qc-editor {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.qc-editor__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.qc-editor__select {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 8px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  background: #ffffff;
  color: #344054;
}

.qc-editor__tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.qc-editor__toolbar .qc-editor__button {
  border: 1px solid transparent;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 6px;
  min-width: 28px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #344054;
  cursor: pointer;
}

.qc-editor__toolbar .qc-editor__button.is-active {
  border-color: rgba(210, 120, 40, 0.4);
  background: rgba(210, 120, 40, 0.12);
  color: #92400e;
}

.qc-editor__divider {
  width: 1px;
  height: 18px;
  background: #e5e7eb;
}

.qc-editor__surface {
  padding: 12px;
  min-height: 240px;
}

.qc-editor__prose {
  outline: none;
  min-height: 240px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #101828;
}

.qc-editor__underline {
  text-decoration: underline;
}

.qc-editor__strike {
  text-decoration: line-through;
}

.qc-editor__hidden-input {
  display: none;
}

.qc-inline-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qc-inline-input--stack {
  margin-top: 8px;
}

.qc-inline-input__field {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.qc-inline-input__button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--qc-orange);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.qc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.qc-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.qc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.qc-switch__slider {
  position: absolute;
  inset: 0;
  background: #e5e7eb;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.qc-switch__slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.2);
  transition: transform 0.2s ease;
}

.qc-switch input:checked + .qc-switch__slider {
  background: var(--qc-orange);
}

.qc-switch input:checked + .qc-switch__slider::before {
  transform: translateX(16px);
}

.qc-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
  z-index: 999;
}

.qc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.qc-toast--success {
  background: #166534;
}

.qc-toast--error {
  background: #991b1b;
}

.qc-auth {
  padding: 48px 24px 80px;
  display: flex;
  justify-content: center;
}

.qc-auth__card {
  max-width: 420px;
  width: 100%;
  border: 1px solid var(--qc-border);
  border-radius: 16px;
  padding: 32px;
  background: var(--qc-surface);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.qc-auth__title {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--qc-text-strong);
}

.qc-auth__subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--qc-muted);
}

.qc-auth__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: var(--qc-orange);
  color: #111111;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.4px;
}

.qc-auth__hidden-fields {
  display: none;
}

.qc-profile {
  padding: 32px 132px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.qc-profile__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.qc-profile__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #101828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  overflow: hidden;
  flex-shrink: 0;
}

.qc-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-profile__identity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qc-profile__name {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--qc-text-strong);
}

.qc-profile__bio {
  margin: 0;
  font-size: 14px;
  color: var(--qc-muted);
}

.qc-profile__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qc-profile__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.qc-tab {
  border: 1px solid var(--qc-border);
  background: var(--qc-surface);
  color: var(--qc-text);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.qc-tab.is-active {
  background: var(--qc-orange);
  border-color: var(--qc-orange);
  color: #111111;
}

.qc-profile__panel {
  display: none;
}

.qc-profile__panel.is-active {
  display: block;
}

.qc-profile__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qc-profile-card {
  background: var(--qc-surface);
  border: 1px solid var(--qc-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.qc-profile-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0b0b0b;
  display: block;
}

.qc-profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-profile-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  color: #ffffff;
  background: #101828;
}

.qc-profile-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qc-profile-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: var(--qc-text-strong);
}

.qc-profile-card__meta {
  font-size: 12px;
  color: var(--qc-muted);
}

.qc-profile__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qc-profile-comment {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--qc-border);
  background: var(--qc-surface);
}

.qc-profile-comment__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--qc-muted);
}

.qc-profile-comment__meta a {
  color: var(--qc-text-strong);
  text-decoration: none;
}

.qc-profile-comment__meta a:hover {
  text-decoration: underline;
}

.qc-profile-comment__body {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--qc-text);
}

.qc-profile-comment__body--muted {
  color: var(--qc-muted);
  font-style: italic;
}

.qc-profile__empty {
  border: 1px dashed var(--qc-border);
  border-radius: 12px;
  padding: 16px;
  color: var(--qc-muted);
}

.qc-profile__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qc-uploader--compact {
  min-height: 140px;
}

@media (max-width: 1100px) {
  .qc-compose {
    padding: 24px;
  }

  .qc-compose__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .qc-compose {
    padding: 16px 12px;
  }

  .qc-compose__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .qc-compose__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .qc-toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }
}

@media (max-width: 1100px) {
  .qc-profile {
    padding: 24px;
  }

  .qc-profile__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .qc-profile {
    padding: 16px 12px;
  }

  .qc-profile__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .qc-profile__grid {
    grid-template-columns: 1fr;
  }

  .qc-profile-comment__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .qc-alley,
  .qc-alley-detail {
    padding: 24px;
  }

  .qc-alley__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qc-article-layout {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .qc-article-ad__box {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .qc-alley,
  .qc-alley-detail {
    padding: 16px 12px;
  }

  .qc-alley__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .qc-alley__filters {
    flex-wrap: wrap;
  }

  .qc-alley__grid {
    grid-template-columns: 1fr;
  }

  .qc-alley-detail__header {
    flex-direction: column;
  }

  .qc-alley-detail__video iframe {
    min-height: 220px;
  }

  .qc-comment--reply {
    margin-left: 12px;
  }
}

:root[data-theme="dark"] {
  --qc-ink: #f5f5f5;
  --qc-text: #d1d5db;
  --qc-border: #2a2a2a;
  --qc-bg: #0f0f0f;
  --qc-surface: #1a1a1a;
  --qc-surface-2: #202020;
  --qc-muted: #9ca3af;
  --qc-text-strong: #f8fafc;
}

:root[data-theme="dark"] body {
  background: var(--qc-bg);
  color: var(--qc-text);
}

:root[data-theme="dark"] .qc-page,
:root[data-theme="dark"] .qc-newsfeed,
:root[data-theme="dark"] .qc-admin,
:root[data-theme="dark"] .qc-article,
:root[data-theme="dark"] .qc-volanta,
:root[data-theme="dark"] .qc-compose {
  background: var(--qc-bg);
}

:root[data-theme="dark"] .qc-icon {
  color: var(--qc-text);
}

:root[data-theme="dark"] .qc-navbar {
  background: #141414;
  border-bottom-color: var(--qc-border);
}

:root[data-theme="dark"] .qc-navbar__link {
  color: #cfcfcf;
}

:root[data-theme="dark"] .qc-navbar__link:hover {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-navbar__brand-secondary {
  color: var(--qc-ink);
}

:root[data-theme="dark"] .qc-icon-button {
  color: var(--qc-surface);
}

:root[data-theme="dark"] .qc-icon-button--moon {
  color: var(--qc-surface);
}

:root[data-theme="dark"] .qc-icon--moon {
  display: none;
}

:root[data-theme="dark"] .qc-icon--sun {
  display: inline-block;
  color: #e9d200;
}

:root[data-theme="dark"] .qc-user-button {
  color: var(--qc-surface);
}

:root[data-theme="dark"] .qc-user-dropdown {
  background: #141414;
  border-color: var(--qc-border);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .qc-user-dropdown__link:hover {
  background: #1f1f1f;
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-nav-menu {
  background: #141414;
  border-color: var(--qc-border);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .qc-nav-menu__link {
  color: var(--qc-text);
}

:root[data-theme="dark"] .qc-nav-menu__link:hover {
  background: #1f1f1f;
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-nav-menu__close {
  background: #1f1f1f;
  border-color: var(--qc-border);
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-hero__main,
:root[data-theme="dark"] .qc-hero__card {
  background: #111111;
}

:root[data-theme="dark"] .qc-hero__summary,
:root[data-theme="dark"] .qc-hero__category,
:root[data-theme="dark"] .qc-heading,
:root[data-theme="dark"] .qc-admin__title,
:root[data-theme="dark"] .qc-volanta__title,
:root[data-theme="dark"] .qc-compose__title {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-news-card,
:root[data-theme="dark"] .qc-admin__editor,
:root[data-theme="dark"] .qc-admin__table,
:root[data-theme="dark"] .qc-card,
:root[data-theme="dark"] .qc-volanta-card,
:root[data-theme="dark"] .qc-newsfeed__ad,
:root[data-theme="dark"] .qc-newsfeed__ad--side,
:root[data-theme="dark"] .qc-newsfeed__empty,
:root[data-theme="dark"] .qc-volanta__empty,
:root[data-theme="dark"] .qc-loading--page,
:root[data-theme="dark"] .qc-editor {
  background: var(--qc-surface);
  border-color: var(--qc-border);
  box-shadow: none;
}

:root[data-theme="dark"] .qc-news-card__media {
  background: #2a2a2a;
}

:root[data-theme="dark"] .qc-news-card__title,
:root[data-theme="dark"] .qc-volanta-card__title,
:root[data-theme="dark"] .qc-article__title {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-news-card__subtitle,
:root[data-theme="dark"] .qc-news-card__author,
:root[data-theme="dark"] .qc-news-card__meta,
:root[data-theme="dark"] .qc-volanta-card__subtitle,
:root[data-theme="dark"] .qc-article__subtitle,
:root[data-theme="dark"] .qc-article__meta,
:root[data-theme="dark"] .qc-article__body,
:root[data-theme="dark"] .qc-field__meta,
:root[data-theme="dark"] .qc-compose__back {
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-breadcrumb__link,
:root[data-theme="dark"] .qc-breadcrumb__sep,
:root[data-theme="dark"] .qc-article__meta-line {
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-article__share,
:root[data-theme="dark"] .qc-article__photo-wrap {
 
  border-color: var(--qc-border);
}

:root[data-theme="dark"] .qc-share-button {
  background: #141414;
  border-color: var(--qc-border);
}

:root[data-theme="dark"] .qc-share-button--x {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-share-status {
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-article-ad__box {
  background: #0b0b0b;
  border-color: #222222;
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-comments__notice {
  background: rgba(153, 27, 27, 0.2);
  color: #fecaca;
}

:root[data-theme="dark"] .qc-admin__grid th,
:root[data-theme="dark"] .qc-admin__grid td {
  border-bottom-color: var(--qc-border);
  color: var(--qc-text);
}

:root[data-theme="dark"] .qc-admin__link {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-admin__link--danger {
  color: #ef4444;
}

:root[data-theme="dark"] .qc-panel__title {
  color: #f9fafb;
}

:root[data-theme="dark"] .qc-panel__subtitle {
  color: #9ca3af;
}

:root[data-theme="dark"] .qc-redacciones-nav {
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-redacciones-nav__link {
  color: #cbd5e1;
}

:root[data-theme="dark"] .qc-redacciones-nav__link.is-active {
  background: #1f2937;
  color: #f8fafc;
}

:root[data-theme="dark"] .qc-dashboard__card {
  background: #111827;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-dashboard__label,
:root[data-theme="dark"] .qc-dashboard__meta {
  color: #9ca3af;
}

:root[data-theme="dark"] .qc-dashboard__value,
:root[data-theme="dark"] .qc-dashboard__row-title,
:root[data-theme="dark"] .qc-dashboard__panel-title {
  color: #f8fafc;
}

:root[data-theme="dark"] .qc-dashboard__panel {
  background: #111827;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-dashboard__row {
  border-bottom: 1px solid #1f2937;
}

:root[data-theme="dark"] .qc-panel__filters {
  background: #111827;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-panel__search {
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-panel__search-icon {
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-panel__input {
  color: #e5e7eb;
}

:root[data-theme="dark"] .qc-panel__input::placeholder {
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-panel__select {
  background: #0f172a;
  border-color: #1f2937;
  color: #e5e7eb;
}

:root[data-theme="dark"] .qc-panel__table {
  background: #111827;
  border-color: #1f2937;
}

:root[data-theme="dark"] .qc-panel-table {
  color: #e5e7eb;
}

:root[data-theme="dark"] .qc-panel-table thead {
  background: #0f172a;
}

:root[data-theme="dark"] .qc-panel-table th,
:root[data-theme="dark"] .qc-panel-table td {
  border-bottom-color: #1f2937;
}

:root[data-theme="dark"] .qc-panel-sort__icon {
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-panel-badge {
  border-color: #1f2937;
  background: #0f172a;
  color: #cbd5e1;
}

:root[data-theme="dark"] .qc-panel-status {
  background: #1f2937;
  color: #cbd5e1;
}

:root[data-theme="dark"] .qc-panel-status--published {
  background: #1e293b;
  color: #e2e8f0;
}

:root[data-theme="dark"] .qc-panel-status--draft {
  background: #111827;
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-panel-link {
  color: #cbd5e1;
}

:root[data-theme="dark"] .qc-panel-link--danger {
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-panel-action {
  background: #0f172a;
  border-color: #1f2937;
  color: #cbd5e1;
}

:root[data-theme="dark"] .qc-panel-action:hover {
  background: #111827;
  border-color: #334155;
  color: #f8fafc;
}

:root[data-theme="dark"] .qc-panel-action--danger {
  color: #94a3b8;
}

:root[data-theme="dark"] .qc-captcha {
  background: #111827;
  border-color: #1f2937;
  color: #e5e7eb;
}

:root[data-theme="dark"] .qc-redacciones .qc-button--primary {
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: #0f172a;
}

:root[data-theme="dark"] .qc-redacciones .qc-button--ghost {
  background: #1f2937;
}

:root[data-theme="dark"] .qc-compose__back-icon {
  border-color: var(--qc-border);
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-alley-card,
:root[data-theme="dark"] .qc-comment,
:root[data-theme="dark"] .qc-alley-detail__media,
:root[data-theme="dark"] .qc-auth__card {
  background: var(--qc-surface);
  border-color: var(--qc-border);
  box-shadow: none;
}

:root[data-theme="dark"] .qc-alley-card__placeholder {
  background: #0b0b0b;
}

:root[data-theme="dark"] .qc-action-button {
  background: #1f1f1f;
  border-color: var(--qc-border);
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-button {
  background: #1f1f1f;
  border-color: var(--qc-border);
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-button--ghost {
  background: #161616;
}

:root[data-theme="dark"] .qc-button--outline {
  background: transparent;
}

:root[data-theme="dark"] .qc-button--primary {
  background: var(--qc-orange);
  border-color: var(--qc-orange);
  color: #111111;
}

:root[data-theme="dark"] .qc-compose__status {
  background: #1f1f1f;
  border-color: var(--qc-border);
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-compose__status.is-active {
  color: #f59e0b;
  background: rgba(210, 120, 40, 0.12);
}

:root[data-theme="dark"] .qc-card__header,
:root[data-theme="dark"] .qc-field__label {
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-field__input,
:root[data-theme="dark"] .qc-field__textarea,
:root[data-theme="dark"] .qc-field__select,
:root[data-theme="dark"] .qc-inline-input__field {
  background: #111111;
  border-color: var(--qc-border);
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-field__input::placeholder,
:root[data-theme="dark"] .qc-field__textarea::placeholder {
  color: #6b7280;
}

:root[data-theme="dark"] .qc-uploader {
  border-color: var(--qc-border);
  background: #141414;
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-uploader--has-image {
  background: #1a1a1a;
}

:root[data-theme="dark"] .qc-uploader__icon {
  background: #1f1f1f;
  color: var(--qc-muted);
}

:root[data-theme="dark"] .qc-image-preview {
  background: #1a1a1a;
}

:root[data-theme="dark"] .qc-image-preview__btn--rotate {
  background: rgba(30, 30, 30, 0.9);
  color: #d1d5db;
}

:root[data-theme="dark"] .qc-image-preview__btn--rotate:hover {
  background: #2a2a2a;
  color: #ffffff;
}

:root[data-theme="dark"] .qc-image-preview__btn--replace {
  background: rgba(15, 23, 42, 0.75);
  color: #f8fafc;
}

:root[data-theme="dark"] .qc-image-preview__btn--replace:hover {
  background: #0f172a;
  transform: scale(1.05);
}

:root[data-theme="dark"] .qc-editor__toolbar {
  background: #151515;
  border-bottom-color: var(--qc-border);
}

:root[data-theme="dark"] .qc-editor__select,
:root[data-theme="dark"] .qc-editor__toolbar .qc-editor__button {
  background: #1f1f1f;
  border-color: var(--qc-border);
  color: var(--qc-text);
}

:root[data-theme="dark"] .qc-editor__toolbar .qc-editor__button.is-active {
  border-color: rgba(210, 120, 40, 0.6);
  background: rgba(210, 120, 40, 0.2);
  color: #fbbf24;
}

:root[data-theme="dark"] .qc-editor__divider {
  background: var(--qc-border);
}

:root[data-theme="dark"] .qc-editor__prose {
  color: var(--qc-text-strong);
}

:root[data-theme="dark"] .qc-compose__errors {
  background: rgba(153, 27, 27, 0.2);
  color: #fecaca;
}

:root[data-theme="dark"] .qc-loading--form {
  background: rgba(15, 15, 15, 0.7);
}

:root[data-theme="dark"] .qc-switch__slider {
  background: #2a2a2a;
}

:root[data-theme="dark"] .qc-newsfeed__ad,
:root[data-theme="dark"] .qc-newsfeed__ad--side,
:root[data-theme="dark"] .qc-newsfeed__empty,
:root[data-theme="dark"] .qc-volanta__empty {
  color: var(--qc-muted);
}

@keyframes qc-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes qc-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.golob-sponsor{
  display: flex;
  width: 100%;
  object-fit: cover;
}

.qc-article__subtitle{
  font-style: italic;
}
