.div-card {
  border: 1px solid black;
  padding: 20px 20px 20px 20px;
  margin: 20px 0px; }

.vr--d1 .vr-card--hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: 12px;
  margin-bottom: 3rem;
  overflow: hidden;
  background-size: cover;
  background-position: center; }

.vr--d1 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d1 .vr-card__bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end; }

.vr--d1 .vr-card__lefticon {
  display: flex;
  align-items: center; }
  .vr--d1 .vr-card__lefticon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
    margin: 10px; }

.vr--d1 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.vr--d1 .vr-card-linkwrap {
  display: block;
  color: inherit;
  text-decoration: none; }

.vr--d1 .vr-card-linkwrap:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px; }

.vr--d1 .vr-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px; }

.vr--d1 .vr-card__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0.5rem; }

.vr--d1 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 14px;
  opacity: 0.95;
  padding-bottom: 1rem; }

.vr--d1 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px; }

.vr--d1 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d1 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block; }

.vr--d1 .vr-card__cta {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer; }

.vr--d1 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d1 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d1 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

@media (max-width: 640px) {
  .vr--d1 .vr-card--hero {
    min-height: 360px; }
  .vr--d1 .vr-card__bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 12px; } }

.vr--d2 .vr-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d2 .vr-col-left {
  height: 100%; }

.vr--d2 .vr-col-right {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%; }

.vr--d2 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d2 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d2 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d2 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end; }

.vr--d2 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.vr--d2 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px; }

.vr--d2 .vr-card__cta {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d2 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d2 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d2 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d2 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  opacity: .95; }

.vr--d2 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px; }

.vr--d2 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d2 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block; }

@media (max-width: 992px) {
  .vr--d2 .vr-grid {
    grid-template-columns: 1fr;
    align-items: start; }
  .vr--d2 .vr-col-right {
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
    height: auto; }
  .vr--d2 .vr-card--hero {
    min-height: 420px;
    height: auto; }
  .vr--d2 .vr-card--small {
    height: auto;
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d2 .vr-card--hero {
    min-height: 360px; }
  .vr--d2 .vr-card--small {
    min-height: 180px; }
  .vr--d2 .vr-card__bottom--small {
    left: 10px;
    right: 10px;
    bottom: 10px; } }

.vr--d3 .vr-grid {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d3 .vr-col-left {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%; }

.vr--d3 .vr-col-right {
  height: 100%; }

.vr--d3 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d3 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d3 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d3 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end; }

.vr--d3 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.vr--d3 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px; }

.vr--d3 .vr-card__cta {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d3 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d3 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d3 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d3 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  opacity: .95; }

.vr--d3 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px; }

.vr--d3 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d3 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block; }

@media (max-width: 992px) {
  .vr--d3 .vr-grid {
    grid-template-columns: 1fr;
    align-items: start; }
  .vr--d3 .vr-col-left {
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
    height: auto; }
  .vr--d3 .vr-card--hero {
    min-height: 420px;
    height: auto; }
  .vr--d3 .vr-card--small {
    height: auto;
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d3 .vr-card--hero {
    min-height: 360px; }
  .vr--d3 .vr-card--small {
    min-height: 180px; }
  .vr--d3 .vr-card__bottom--small {
    left: 10px;
    right: 10px;
    bottom: 10px; } }

.vr--d4 .vr-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d4 .vr-col-left {
  height: 100%; }

.vr--d4 .vr-col-right {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%; }

.vr--d4 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d4 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d4 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d4 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 15px;
  align-items: end; }

.vr--d4 .vr-card__lefticon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }

.vr--d4 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.vr--d4 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px; }

.vr--d4 .vr-card__cta {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d4 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d4 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d4 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d4 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  opacity: .95; }

.vr--d4 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px; }

.vr--d4 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d4 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block; }

@media (max-width: 992px) {
  .vr--d4 .vr-grid {
    grid-template-columns: 1fr;
    align-items: start; }
  .vr--d4 .vr-col-right {
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
    height: auto; }
  .vr--d4 .vr-card--hero {
    min-height: 420px;
    height: auto; }
  .vr--d4 .vr-card--small {
    height: auto;
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d4 .vr-card--hero {
    min-height: 360px; }
  .vr--d4 .vr-card--small {
    min-height: 180px; }
  .vr--d4 .vr-card__bottom--small {
    left: 10px;
    right: 10px;
    bottom: 10px; } }

.vr--d5 .vr-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d5 .vr-col-right {
  height: 100%; }

.vr--d5 .vr-col-left {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%; }

.vr--d5 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d5 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d5 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d5 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: end; }

.vr--d5 .vr-card__lefticon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }

.vr--d5 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.vr--d5 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px; }

.vr--d5 .vr-card__cta {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d5 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d5 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d5 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d5 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  opacity: .95; }

.vr--d5 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px; }

.vr--d5 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d5 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block; }

@media (max-width: 992px) {
  .vr--d5 .vr-grid {
    grid-template-columns: 1fr;
    align-items: start; }
  .vr--d5 .vr-col-left {
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
    height: auto; }
  .vr--d5 .vr-card--hero {
    min-height: 420px;
    height: auto; }
  .vr--d5 .vr-card--small {
    height: auto;
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d5 .vr-card--hero {
    min-height: 360px; }
  .vr--d5 .vr-card--small {
    min-height: 180px; }
  .vr--d5 .vr-card__bottom--small {
    left: 10px;
    right: 10px;
    bottom: 10px; } }

.vr--d6 .vr-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d6 .vr-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d6 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d6 .vr-card__lefticon {
  display: flex;
  align-items: center; }
  .vr--d6 .vr-card__lefticon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }

.vr--d6 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d6 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d6 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: end; }

.vr--d6 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.vr--d6 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff; }

.vr--d6 .vr-card__cta {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d6 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d6 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d6 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d6 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  color: #fff; }

.vr--d6 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff; }

.vr--d6 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block; }

.vr--d6 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  display: inline-block;
  background: #fff;
  border-radius: 50%; }

@media (max-width: 1200px) {
  .vr--d6 .vr-grid-bottom {
    grid-template-columns: 1fr 1fr; } }

@media (max-width: 992px) {
  .vr--d6 .vr-grid-top {
    grid-template-columns: 1fr; }
  .vr--d6 .vr-grid-bottom {
    grid-template-columns: 1fr 1fr; }
  .vr--d6 .vr-card--hero {
    min-height: 380px; }
  .vr--d6 .vr-card--small {
    min-height: 220px; } }

@media (max-width: 640px) {
  .vr--d6 .vr-grid-bottom {
    grid-template-columns: 1fr; }
  .vr--d6 .vr-card--hero {
    min-height: 300px; }
  .vr--d6 .vr-card--small {
    min-height: 180px; } }

.vr--d7 .vr-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d7 .vr-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px; }

.vr--d7 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d7 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d7 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d7 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end; }

.vr--d7 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.vr--d7 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff; }

.vr--d7 .vr-card__cta {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d7 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d7 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d7 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d7 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  color: #fff; }

.vr--d7 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff; }

.vr--d7 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain; }

.vr--d7 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%; }

@media (max-width: 1200px) {
  .vr--d7 .vr-grid-bottom {
    grid-template-columns: 1fr 1fr; } }

@media (max-width: 992px) {
  .vr--d7 .vr-grid-top {
    grid-template-columns: 1fr; }
  .vr--d7 .vr-grid-bottom {
    grid-template-columns: 1fr 1fr; }
  .vr--d7 .vr-card--hero {
    min-height: 380px; }
  .vr--d7 .vr-card--small {
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d7 .vr-grid-bottom {
    grid-template-columns: 1fr; }
  .vr--d7 .vr-card--hero {
    min-height: 300px; }
  .vr--d7 .vr-card--small {
    min-height: 180px; } }

.vr--d8 .vr-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d8 .vr-card--hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.vr--d8 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d8 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

@media (max-width: 992px) {
  .vr--d8 .vr-grid-top {
    grid-template-columns: 1fr; }
  .vr--d8 .vr-card--hero {
    min-height: 380px; } }

@media (max-width: 640px) {
  .vr--d8 .vr-card--hero {
    min-height: 300px; } }

.vr--d9 .vr-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch; }

.vr--d9 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d9 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d9 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: end; }

.vr--d9 .vr-card__lefticon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }

.vr--d9 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.vr--d9 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff; }

.vr--d9 .vr-card__cta {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d9 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d9 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  color: #fff; }

.vr--d9 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff; }

.vr--d9 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain; }

.vr--d9 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  display: inline-block; }

@media (max-width: 1200px) {
  .vr--d9 .vr-grid-top {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .vr--d9 .vr-grid-top {
    grid-template-columns: 1fr; }
  .vr--d9 .vr-card--small {
    min-height: 220px; } }

@media (max-width: 480px) {
  .vr--d9 .vr-card--small {
    min-height: 180px; } }

.vr--d10 .vr-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px; }

.vr--d10 .vr-card--small {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.vr--d10 .vr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none; }

.vr--d10 .vr-card__bottom--small {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end; }

.vr--d10 .vr-card__content {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.vr--d10 .vr-card__title--small {
  margin: 0 0 6px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff; }

.vr--d10 .vr-card__cta {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease; }

.vr--d10 .vr-card__cta-icon {
  width: 12px;
  height: 12px;
  object-fit: contain; }

.vr--d10 .vr-card__cta:hover {
  transform: translateY(-1px); }

.vr--d10 .vr-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3); }

.vr--d10 .vr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  color: #fff; }

.vr--d10 .vr-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff; }

.vr--d10 .vr-meta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain; }

.vr--d10 .vr-meta__cat__icon {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  display: inline-block; }

@media (max-width: 1200px) {
  .vr--d10 .vr-grid-top {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 992px) {
  .vr--d10 .vr-grid-top {
    grid-template-columns: repeat(2, 1fr); }
  .vr--d10 .vr-card--small {
    min-height: 200px; } }

@media (max-width: 640px) {
  .vr--d10 .vr-grid-top {
    grid-template-columns: 1fr; }
  .vr--d10 .vr-card--small {
    min-height: 180px; } }

.portada_degradado {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
  z-index: 1; }

.portada {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden; }
  .portada__imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
  .portada__contenido {
    position: relative;
    z-index: 2;
    width: 70%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); }
  .portada__titulo {
    margin: 0;
    font-size: 4rem !important;
    font-family: Cormorant Variable;
    font-weight: bold; }
  .portada__info {
    margin-top: 10px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .portada__localidad {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: "Bould", sans-serif; }
    .portada__localidad img {
      height: 20px;
      margin-right: 8px; }
  .portada__zona {
    margin-left: 28px;
    font-size: 0.8rem !important;
    font-family: "Bould", sans-serif;
    font-weight: bold;
    text-transform: uppercase; }

.detalle {
  background-color: #c62828;
  color: white;
  padding: 20px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .detalle__container {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
  .detalle__info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; }
    .detalle__info-item {
      display: flex;
      flex-direction: column;
      min-width: 100px;
      text-align: left; }
      .detalle__info-item-label {
        margin-bottom: 4px; }
  .detalle__icons {
    display: flex;
    align-items: center;
    gap: 15px; }
    .detalle__icons img {
      height: 20px; }
    .detalle__icons-gpx {
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      border: 1px solid white;
      color: white; }
      .detalle__icons-gpx:hover {
        color: white;
        text-decoration: none; }
      .detalle__icons-gpx--disabled {
        color: #eee;
        border-color: #ccc;
        opacity: 0.5;
        cursor: not-allowed; }
  @media (max-width: 1300px) {
    .detalle__container {
      flex-direction: column;
      align-items: center; }
    .detalle__icons {
      order: 1;
      margin-top: 20px;
      justify-content: center;
      width: 100%; }
    .detalle__info {
      order: 0;
      justify-content: center; } }

.incidencias {
  background-color: #f3f0eb;
  padding: 20px; }
  .incidencias__container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; }
  .incidencias__titulo {
    color: #c61f26;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin: 0; }
  .incidencias__texto {
    font-weight: 500;
    margin: 0; }

.descripcion {
  padding: 30px 0 15px 17px; }
  .descripcion__container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
  .descripcion__titulo {
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0;
    flex: 0 0 100%; }

.categorizacion {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 10px;
  gap: 8px; }
  .categorizacion__container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; }
  .categorizacion__item {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    background-color: #fff; }

.iframe {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0; }

.tramos__header {
  text-align: center;
  margin-bottom: 20px; }

.tramos__header-titulo {
  font-size: 1.7rem; }

.tramos__header-texto {
  width: 60%;
  margin: 0 auto;
  padding: 10px 0 40px;
  text-align: center; }

.tramos__sep {
  border: none;
  border-top: 1px solid #242424;
  margin: 0 20px; }

.tramos__lista {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px; }

.tramos__item {
  background-color: #E6E3DC;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  font-family: sans-serif;
  width: 100%; }

.tramos__item-contenido {
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.tramos__item-info {
  display: flex;
  align-items: center;
  gap: 25px; }
  .tramos__item-info-distancia {
    background-color: #66bb6a;
    color: white;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px; }
  .tramos__item-info-titulo {
    margin: 0;
    font-size: 1.7rem;
    font-weight: bold;
    color: #222; }

.tramos__item-numero {
  font-size: 2rem;
  color: #999; }

.tramos__item-detalles {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  font-size: 0.95rem; }
  .tramos__item-detalles-col {
    flex: 0 0 auto; }

.tramos__item-descripcion {
  padding: 20px 20px; }
  .tramos__item-descripcion p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0; }

.tramos__item-ver {
  padding: 20px 20px; }
  .tramos__item-ver a {
    color: #c62828;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px; }
    .tramos__item-ver a img {
      height: 25px; }

.tramos__item-imagen {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block; }

.icon-trash:hover {
  color: red; }

.rutas-rel__header {
  padding-top: 30px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500; }
  .rutas-rel__header-titulo {
    margin: 0; }

.rutas-rel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: start;
  padding: 40px 0;
  width: 70%;
  margin: 0 auto; }

.rutas-rel__card {
  width: 100%;
  max-width: 350px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: auto; }
  .rutas-rel__card:hover {
    text-decoration: none; }
  .rutas-rel__card-inner {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%; }
  .rutas-rel__card-imagen {
    width: 100%;
    height: 320px;
    min-height: 320px;
    flex: 0 0 auto;
    object-fit: cover;
    background-color: #eee;
    display: block; }
  .rutas-rel__card-sin-imagen {
    width: 100%;
    height: 320px;
    min-height: 320px;
    flex: 0 0 auto;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center; }
    .rutas-rel__card-sin-imagen span {
      color: #aaa;
      font-size: 1rem; }
  .rutas-rel__card-contenido {
    padding: 30px;
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .rutas-rel__card-contenido-localidad {
      font-size: 0.75rem;
      letter-spacing: 1px;
      color: #999;
      text-transform: uppercase;
      font-weight: bold; }
    .rutas-rel__card-contenido-titulo {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      margin: 20px auto 0;
      width: 80%; }

@media (max-width: 768px) {
  .rutas-rel__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%; } }

@media (max-width: 480px) {
  .rutas-rel__grid {
    grid-template-columns: 1fr; } }

.componente-slider-images {
  position: relative;
  margin-top: 20px; }

.componente-slider-images a {
  text-decoration: none; }

.componente-slider-images .carrousel {
  border-radius: 25px;
  overflow: hidden;
  /*margin-top: 50px;*/ }

.componente-slider-images .carrousel .carousel-indicators {
  display: none; }

.componente-slider-images .carrousel .carousel-inner {
  position: relative;
  width: calc(100% - 150px);
  overflow: hidden;
  margin: 0px 75px;
  border-radius: 25px; }

.componente-slider-images .carrousel .carousel-inner .img-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(181.66deg, rgba(26, 23, 27, 0) 0%, #1a171b 100%); }

.componente-slider-images .carrousel .carousel-inner .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 600px;
  border-radius: 25px; }

.componente-slider-images .carrousel .carousel-inner .card-content .content {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 50px; }

.componente-slider-images .carrousel .carousel-inner .card-content .content .paragraph-microcopy {
  margin-bottom: 0px; }

.componente-slider-images .carrousel .carousel-inner .card-content .content .calendas-title-medium {
  margin-bottom: 30px; }

.componente-slider-images .carrousel .carousel-control-prev, .componente-slider-images .carrousel .carousel-control-next {
  position: absolute;
  height: 150px;
  width: 150px;
  top: 300px;
  transform: translate(0, -50%);
  border-radius: 25px;
  overflow: hidden;
  opacity: 1;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5); }

.componente-slider-images .carrousel .carousel-control-prev .image, .componente-slider-images .carrousel .carousel-control-next .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: none; }

.componente-slider-images .carrousel .carousel-control-prev .image.active, .componente-slider-images .carrousel .carousel-control-next .image.active {
  display: block !important; }

.componente-slider-images .carrousel .carousel-control-prev-icon, .componente-slider-images .carrousel .carousel-control-next-icon {
  height: 150px;
  width: 150px;
  border-radius: 25px; }

@media only screen and (max-width: 1199px) {
  .componente-slider-images .paragraph-base {
    column-count: 1; }
  .componente-slider-images .carrousel .carousel-inner {
    width: calc(100% - 60px);
    margin: 0px auto; }
  .componente-slider-images .carrousel .carousel-inner ul {
    padding-left: 0px; }
  .componente-slider-images .carrousel .carousel-inner ul a {
    display: flex; }
  .componente-slider-images .carrousel .carousel-control-prev, .componente-slider-images .carrousel .carousel-control-next {
    height: 70px;
    width: 70px; } }

@media (max-width: 767px) {
  .componente-slider-images .carrousel .carousel-inner .image,
  .componente-slider-images .carrousel .carousel-inner video.image {
    height: 300px; }
  .componente-slider-images .carrousel .carousel-control-prev, .componente-slider-images .carrousel .carousel-control-next {
    top: 150px; }
  .componente-slider-images .carousel-item .card-content.block-image a {
    top: calc(50% - 150px); } }

.contenido-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }

.contenido-row h3 {
  margin: 0;
  text-align: center; }

.contenido-row .icon-trash {
  position: absolute;
  font-size: 25px;
  right: 0;
  cursor: pointer; }

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }

.switch input {
  display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px; }

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%; }

input:checked + .slider {
  background-color: #2196F3; }

input:checked + .slider:before {
  transform: translateX(26px); }

.visualizador-card {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.vr-card-linkwrap {
  display: block;
  color: inherit;
  text-decoration: none; }

.vr-card-linkwrap:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px; }