.vr-post-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vr-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .vr-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards y grillas editoriales → assets/css/lego/ */

.vr-card-meta {
  margin: 0;
  color: var(--cco-legacy-text-muted);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vr-card-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.vr-card-excerpt {
  display: none;
}

.vr-post-source a {
  color: var(--cco-legacy-orange);
}

/* ---- Single post ---- */
.vr-read-progress {
  position: fixed;
  top: var(--cco-header-old-h, 72px);
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.vr-read-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cco-legacy-orange), #ffaa55);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.45);
  transition: width 0.12s linear;
}

.vr-single-section {
  padding-top: 1.5rem;
}

.vr-layout--single {
  align-items: start;
}

@media (min-width: 992px) {
  .vr-layout--single {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

.vr-single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vr-single-breadcrumb a {
  color: var(--cco-legacy-text-soft);
  text-decoration: none;
}

.vr-single-breadcrumb a:hover {
  color: var(--cco-legacy-orange);
}

.vr-single-breadcrumb-current {
  color: var(--cco-legacy-orange);
}

.vr-single-breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.22);
  font-weight: 400;
}

.vr-single-header {
  padding: 1.25rem 1.25rem 0;
}

.vr-single-header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.vr-single-header__top .vr-single-breadcrumb {
  flex: 1 1 12rem;
  min-width: 0;
  margin: 0;
}

.vr-single-badge {
  display: inline-block;
  padding: 0.32rem 0.7rem 0.32rem 0.55rem;
  margin-bottom: 0.85rem;
  background: var(--cco-legacy-orange-soft);
  color: var(--cco-legacy-orange);
  font-family: var(--cco-font-content);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 3px solid var(--cco-legacy-orange);
  border-radius: 0 4px 4px 0;
}

@media (min-width: 768px) {
  .vr-single-header {
    padding: 1.75rem 2rem 0;
  }
}

.vr-single-title {
  font-family: var(--cco-font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: var(--cco-legacy-white);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.vr-single-media {
  position: relative;
  margin: 1.25rem 1.25rem 0;
  border-radius: var(--cco-legacy-radius);
  overflow: hidden;
  border: 1px solid var(--cco-legacy-border);
  box-shadow: var(--cco-legacy-shadow);
}

.vr-single-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 26, 14, 0.42) 0%, transparent 45%);
  pointer-events: none;
}

.vr-single-media-img {
  display: block;
  width: 100%;
  max-height: 444px;
  object-fit: cover;
  aspect-ratio: 16 / 10.8;
}

@media (min-width: 768px) {
  .vr-single-media {
    margin: 1.5rem 2rem 0;
  }

  .vr-single-media-img {
    max-height: 492px;
  }
}

.vr-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--cco-legacy-text-soft);
}

.vr-single-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.vr-single-meta svg {
  width: 16px;
  height: 16px;
  color: var(--cco-legacy-orange);
  flex-shrink: 0;
}

.vr-single-header:has(.vr-single-meta) {
  padding-bottom: 0;
}

.vr-single-header .vr-single-meta {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--cco-legacy-border);
}

.vr-single-meta li + li {
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vr-single,
.cco-single {
  position: relative;
  background: var(--cco-legacy-surface);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--cco-legacy-shadow-soft);
}

.vr-single::before,
.cco-single::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--cco-legacy-orange) 0%, rgba(255, 102, 0, 0.15) 55%, transparent 100%);
}

/* ---- Share bar (portada, archivos, single) ---- */
.vr-home-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(11, 77, 36, 0.55) 0%, rgba(4, 26, 14, 0.92) 100%);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius-lg);
  box-shadow: var(--cco-legacy-shadow-soft);
}

@media (min-width: 768px) {
  .vr-home-intro {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.vr-home-intro-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--cco-legacy-radius);
  background: rgba(0, 0, 0, 0.25);
  min-height: 180px;
}

.vr-home-intro--logo .vr-home-intro-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 102, 0, 0.12) 0%, transparent 55%),
    rgba(0, 0, 0, 0.28);
}

.vr-home-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.vr-home-intro--logo .vr-home-intro-image {
  width: auto;
  height: auto;
  max-width: min(220px, 100%);
  max-height: 160px;
  min-height: 0;
  object-fit: contain;
}

.vr-home-intro-body {
  min-width: 0;
}

.vr-home-intro-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.vr-home-intro-copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.vr-home-tagline {
  margin: 0.35rem 0 0;
  font-family: var(--cco-font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--cco-legacy-orange);
  line-height: 1.3;
}

.vr-home-location {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--cco-legacy-text-soft);
  line-height: 1.45;
}

.cco-home-location a {
  color: inherit;
  text-decoration: none;
}

.cco-home-location a:hover {
  color: var(--cco-vino);
  text-decoration: underline;
}

.vr-home-lead {
  margin: 0 0 1rem;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--cco-legacy-text-soft);
}

.vr-home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cco-section-head--hero {
  margin-bottom: 0.75rem;
}

.cco-section-kicker {
  margin: 0;
  font-family: var(--cco-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cco-legacy-orange);
}

.cco-hero-excerpt {
  margin: 0.65rem 0 0;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.vr-home-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.vr-home-title {
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
  font-family: var(--cco-font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cco-legacy-white);
  letter-spacing: -0.02em;
}

.vr-share-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--cco-legacy-border);
  border-radius: 999px;
  flex-shrink: 0;
}

.vr-share-bar--header {
  align-self: flex-start;
}

.vr-share-bar--single {
  background: rgba(255, 255, 255, 0.05);
}

.vr-share-bar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-text-muted);
  white-space: nowrap;
}

.vr-share-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.vr-share-btn,
.vr-single-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cco-legacy-white);
  cursor: pointer;
  transition: background var(--cco-legacy-transition), transform var(--cco-legacy-transition), color var(--cco-legacy-transition);
}

.vr-share-btn:hover,
.vr-single-share-btn:hover {
  color: var(--cco-legacy-white);
  transform: translateY(-2px);
}

.vr-share-btn--whatsapp:hover,
.vr-single-share-btn--whatsapp:hover {
  background: #25d366;
}

.vr-share-btn--facebook:hover,
.vr-single-share-btn--facebook:hover {
  background: #1877f2;
}

.vr-share-btn--twitter:hover,
.vr-single-share-btn--twitter:hover {
  background: #0f1419;
}

.vr-share-btn--copy:hover,
.vr-single-share-btn--copy:hover {
  background: var(--cco-legacy-orange);
}

.vr-share-btn--copy.is-copied,
.vr-single-share-btn--copy.is-copied {
  background: var(--cco-legacy-green);
}

.vr-share-btn--copy.is-copied svg,
.vr-single-share-btn--copy.is-copied svg {
  opacity: 0;
}

.vr-share-btn--copy.is-copied::after,
.vr-single-share-btn--copy.is-copied::after {
  content: "\2713";
  position: absolute;
  font-size: 0.9375rem;
  font-weight: 700;
}

.vr-share-btn--copy,
.vr-single-share-btn--copy {
  position: relative;
}

.vr-share-btn svg,
.vr-single-share-btn svg {
  width: 17px;
  height: 17px;
}

.vr-page-header .vr-share-bar {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.vr-page-header .vr-share-bar__label {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
  .vr-share-bar--header,
  .vr-share-bar--home {
    width: auto;
    margin-left: auto;
  }

  .vr-home-top {
    align-items: flex-start;
  }

  .vr-page-header__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .vr-page-header__content {
    flex: 0 1 auto;
  }

  .vr-share-bar--header {
    align-self: stretch;
  }
}

.vr-single-body,
.cco-single-body {
  padding: 1.75rem 1.25rem;
}

@media (min-width: 768px) {
  .vr-single-body,
  .cco-single-body {
    padding: 2rem 2.25rem;
  }
}


/* ---- Comentarios ---- */
.vr-comments {
  margin-top: 2rem;
  padding: 1.75rem 1.25rem 1.5rem;
  background: var(--cco-legacy-surface);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius-lg);
}

@media (min-width: 768px) {
  .vr-comments {
    padding: 2rem 2.25rem 1.75rem;
  }
}

.vr-comments-title,
.vr-single-related-title {
  font-family: var(--cco-font-content);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  color: var(--cco-legacy-white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.vr-comments-title::after,
.vr-single-related-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 2.75rem;
  height: 2px;
  background: var(--cco-legacy-orange);
}

.vr-comment-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.vr-comment-list .children {
  list-style: none;
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 102, 0, 0.35);
}

@media (min-width: 768px) {
  .vr-comment-list .children {
    padding-left: 1.5rem;
  }
}

.vr-comment {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cco-legacy-border);
}

.vr-comment:last-child {
  border-bottom: 0;
}

.vr-comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.vr-comment-avatar img {
  border-radius: 50%;
  display: block;
}

.vr-comment-author {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--cco-legacy-white);
}

.vr-comment-author a {
  color: inherit;
  text-decoration: none;
}

.vr-comment-date {
  display: block;
  font-size: 0.75rem;
  color: var(--cco-legacy-text-muted);
}

.vr-comment-awaiting {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--cco-legacy-orange);
}

.vr-comment-content {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--cco-legacy-text-soft);
}

.vr-comment-content p {
  margin: 0 0 0.75rem;
}

.vr-comment-content p:last-child {
  margin-bottom: 0;
}

.vr-comment-reply {
  margin-top: 0.65rem;
}

.vr-comments-closed {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--cco-legacy-text-muted);
}

.vr-comment-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cco-legacy-border);
}

.vr-comment-form .comment-reply-title {
  font-family: var(--cco-font-content);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  color: var(--cco-legacy-white);
}

.vr-comment-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--cco-legacy-text-soft);
}

.vr-comment-form input[type="text"],
.vr-comment-form input[type="email"],
.vr-comment-form input[type="url"],
.vr-comment-form textarea {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius);
  background: var(--cco-legacy-green-soft);
  color: var(--cco-legacy-white);
  font: inherit;
}

.vr-comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.vr-comment-form input:focus,
.vr-comment-form textarea:focus {
  outline: 2px solid var(--cco-legacy-orange);
  outline-offset: 1px;
}

.vr-comment-form .form-submit {
  margin: 0.5rem 0 0;
}

.vr-comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cco-legacy-text-muted);
  margin-bottom: 0.85rem;
}

.vr-comment-form .comment-form-cookies-consent input {
  margin-top: 0.2rem;
}

.vr-comments .comment-navigation,
.vr-comments .navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
}

.vr-comments .comment-navigation a,
.vr-comments .navigation a {
  color: var(--cco-legacy-orange);
  text-decoration: none;
  font-weight: 600;
}

.vr-comments .comment-navigation a:hover,
.vr-comments .navigation a:hover {
  color: var(--cco-legacy-white);
}

.vr-single-footer {
  margin: 0;
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: 1px solid var(--cco-legacy-border);
  background: rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .vr-single-footer {
    padding: 1.25rem 2.25rem 1.75rem;
  }
}

.vr-single-tags-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-text-muted);
  margin-bottom: 0.65rem;
}

.vr-single-tags {
  margin-bottom: 0.25rem;
}

.vr-single-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vr-single-tags-list .vr-tag {
  padding: 0.35rem 0.8rem;
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cco-legacy-border);
  border-radius: 999px;
}

.vr-single-tags-list .vr-tag:hover {
  background: var(--cco-legacy-orange);
  border-color: var(--cco-legacy-orange);
  color: var(--cco-legacy-white);
}

.vr-single-back {
  margin: 1.5rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--cco-legacy-border);
}

.vr-single-back .vr-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: 999px;
  transition: background var(--cco-legacy-transition), border-color var(--cco-legacy-transition), color var(--cco-legacy-transition);
}

.vr-single-back .vr-link:hover {
  background: var(--cco-legacy-orange);
  border-color: var(--cco-legacy-orange);
  color: var(--cco-legacy-white);
}

.vr-single-nav {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .vr-single-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.vr-single-nav-spacer {
  display: none;
}

.vr-single-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  background: var(--cco-legacy-surface);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius-lg);
  text-decoration: none;
  transition: border-color var(--cco-legacy-transition), transform var(--cco-legacy-transition), box-shadow var(--cco-legacy-transition);
}

.vr-single-nav-link:hover {
  border-color: rgba(255, 102, 0, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--cco-legacy-shadow-soft);
}

.vr-single-nav-link--prev {
  border-left: 3px solid rgba(255, 102, 0, 0.45);
}

.vr-single-nav-link--next {
  text-align: right;
  border-right: 3px solid rgba(255, 102, 0, 0.45);
}

.vr-single-nav-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-orange);
}

.vr-single-nav-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cco-legacy-white);
  line-height: 1.35;
}

.vr-single-related {
  margin-top: 2.5rem;
}

.vr-single-related .cco-section-divider {
  margin-bottom: 1.15rem;
}

.vr-post-grid--related {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vr-post-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .vr-post-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vr-sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vr-sidebar-post {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cco-legacy-border);
}

.vr-sidebar-post:last-child {
  border-bottom: 0;
}

.vr-sidebar-post-thumb {
  display: block;
  border-radius: var(--cco-legacy-radius);
  overflow: hidden;
}

.vr-sidebar-post-thumb img {
  width: 80px;
  height: 56px;
  object-fit: cover;
}

.vr-sidebar-post-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cco-legacy-white);
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.vr-sidebar-post-title:hover {
  color: var(--cco-legacy-orange);
}

.vr-sidebar-post-date {
  font-size: 0.6875rem;
  color: var(--cco-legacy-text-muted);
}

.vr-sidebar-more {
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .vr-sidebar--single {
    position: sticky;
    top: calc(var(--cco-header-old-h) + 1rem);
  }
}

.vr-tag-cloud a {
  display: inline-block;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--cco-legacy-green-soft);
  color: var(--cco-legacy-text-soft);
  text-decoration: none;
  font-size: 0.8125rem;
}

.vr-tag-cloud a:hover {
  background: var(--cco-legacy-orange);
  color: var(--cco-legacy-white);
}

.vr-post-source {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cco-legacy-border);
  font-size: 0.8125rem;
  color: var(--cco-legacy-text-muted);
}

.vr-post-source a {
  color: var(--cco-legacy-orange);
}

/* ---- Institucional ---- */
.vr-single--institutional .vr-single-body {
  padding: 1.75rem 1.25rem 2rem;
}

@media (min-width: 768px) {
  .vr-single--institutional .vr-single-body {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.vr-inst-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vr-sidebar--institutional .vr-inst-nav {
  flex-direction: column;
  flex-wrap: nowrap;
}

.vr-inst-nav-link {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: var(--cco-legacy-radius);
  border: 1px solid var(--cco-legacy-border);
  color: var(--cco-legacy-text-soft);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: border-color var(--cco-legacy-transition), color var(--cco-legacy-transition);
}

.vr-sidebar--institutional .vr-inst-nav-link {
  display: block;
}

.vr-inst-nav-link:hover,
.vr-inst-nav-link.is-current {
  border-color: var(--cco-legacy-orange-glow);
  color: var(--cco-legacy-orange);
}

.vr-inst-nav-link.is-current {
  background: var(--cco-legacy-green-soft);
}

.vr-schedule {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cco-legacy-border);
}

.vr-schedule-title {
  font-family: var(--cco-font-content);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: var(--cco-legacy-white);
}

.vr-schedule-note {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--cco-legacy-text-muted);
}

.vr-schedule-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .vr-schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .vr-schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vr-schedule-day {
  background: var(--cco-legacy-green-soft);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius);
  padding: 1rem;
}

.vr-schedule-day-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cco-legacy-orange);
}

.vr-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vr-schedule-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--cco-legacy-border);
  font-size: 0.8125rem;
}

.vr-schedule-item:last-child {
  border-bottom: 0;
}

.vr-schedule-time {
  color: var(--cco-legacy-text-muted);
  font-weight: 600;
}

.vr-schedule-program strong {
  display: block;
  color: var(--cco-legacy-white);
  font-weight: 600;
}

.vr-schedule-host {
  display: block;
  color: var(--cco-legacy-text-muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.vr-contact {
  margin-top: 1.5rem;
}

.vr-contact-heading {
  font-family: var(--cco-font-content);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-white);
  margin: 2rem 0 1rem;
}

.vr-contact-heading:first-child {
  margin-top: 0;
}

.vr-contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vr-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vr-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--cco-legacy-green-soft);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius);
  padding: 1rem 1.15rem;
}

.vr-contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cco-legacy-green);
  color: var(--cco-legacy-orange);
}

.vr-contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.vr-contact-card-body {
  min-width: 0;
}

.vr-contact-card-label {
  margin: 0 0 0.3rem;
  font-family: var(--cco-font-content);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-orange);
}

.vr-contact-card-value {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--cco-legacy-white);
}

.vr-contact-card-value a,
.vr-contact-inline-btn {
  color: var(--cco-legacy-orange);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.vr-contact-card-value a:hover,
.vr-contact-inline-btn:hover {
  color: var(--cco-legacy-white);
  text-decoration: underline;
}

.vr-contact-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vr-contact-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 88px;
  padding: 0.85rem 0.75rem;
  border-radius: var(--cco-legacy-radius);
  background: var(--cco-legacy-green-soft);
  border: 1px solid var(--cco-legacy-border);
  color: var(--cco-legacy-white);
  text-decoration: none;
  transition: border-color var(--cco-legacy-transition), transform var(--cco-legacy-transition);
}

.vr-contact-social-link:hover {
  border-color: var(--cco-legacy-orange-glow);
  transform: translateY(-2px);
  color: var(--cco-legacy-white);
}

.vr-contact-social-icon {
  display: inline-flex;
  color: var(--cco-legacy-orange);
}

.vr-contact-social-icon svg {
  width: 24px;
  height: 24px;
}

.vr-contact-social-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.vr-contact-form {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--cco-legacy-border);
  border-radius: var(--cco-legacy-radius-lg);
}

.vr-contact-form-note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--cco-legacy-text-muted);
}

.vr-contact-form-feedback {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--cco-legacy-radius);
  font-size: 0.875rem;
  line-height: 1.55;
  outline: none;
}

.vr-contact-form-feedback.is-success {
  background: var(--cco-legacy-orange-soft);
  border: 1px solid var(--cco-legacy-border-glow);
  color: var(--cco-legacy-white);
}

.vr-contact-form-feedback.is-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

.vr-contact-form.is-submitting .cco-btn {
  opacity: 0.85;
  cursor: wait;
}

.vr-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vr-contact-form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vr-contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vr-contact-form-full {
  grid-column: 1 / -1;
}

.vr-contact-form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cco-legacy-orange);
}

.vr-contact-form input,
.vr-contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--cco-legacy-radius);
  border: 1px solid var(--cco-legacy-border);
  background: var(--cco-legacy-surface);
  color: var(--cco-legacy-white);
  font-size: 0.9375rem;
  font: inherit;
}

.vr-contact-form .cco-btn {
  margin-top: 1rem;
}

.vr-contact-map {
  width: 100%;
  border-radius: var(--cco-legacy-radius-lg);
  overflow: hidden;
  border: 1px solid var(--cco-legacy-border);
  background: var(--cco-legacy-green-soft);
}

.vr-contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

@media (min-width: 768px) {
  .vr-contact-map iframe {
    height: 380px;
  }
}

.vr-contact-map-link {
  margin: 0.75rem 0 0;
}

.vr-contact-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cco-legacy-orange);
  text-decoration: none;
}

.vr-contact-map-link a:hover {
  color: var(--cco-legacy-white);
}

.vr-contact-map-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.vr-inst-cta {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--cco-legacy-radius-lg);
  background: linear-gradient(135deg, var(--cco-legacy-green-soft), var(--cco-legacy-orange-soft));
  border: 1px solid var(--cco-legacy-border-glow);
}

.vr-inst-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--cco-font-display);
  color: var(--cco-legacy-white);
}

.vr-inst-cta p {
  margin: 0 0 1rem;
}

.cco-prose .vr-inst-cta .cco-btn,
.vr-single-body.cco-prose .vr-inst-cta .cco-btn {
  color: var(--cco-legacy-white);
}

.cco-prose .vr-inst-cta .cco-btn:hover,
.vr-single-body.cco-prose .vr-inst-cta .cco-btn:hover {
  color: var(--cco-legacy-white);
}

.vr-sidebar-live-text {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--cco-legacy-text-soft);
}

@media (min-width: 992px) {
  .vr-sidebar--institutional {
    position: sticky;
    top: calc(var(--cco-header-old-h) + 1rem);
  }
}
