#pev ::after,
#pev ::before,
#pev* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#pev {
  --pev-primary: #e63946;
  --pev-secondary: #f4a261;
  --pev-accent: #2ec4b6;
  --pev-dark: #0b0c10;
  --pev-dark2: #1a1a2e;
  --pev-dark3: #16213e;
  --pev-gradient: linear-gradient(135deg, #e63946, #f4a261);
  --pev-bg: #f5f5f7;
  --pev-card-bg: #fff;
  --pev-text-dark: #1a1a1a;
  --pev-text-body: #444;
  --pev-text-muted: #777;
  --pev-border: #e8e8e8;
  --pev-border-light: #f0f0f0;
  --pev-radius: 16px;
  --pev-radius-sm: 12px;
  --pev-radius-xs: 8px;
  --pev-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --pev-shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --pev-shadow-hero: 0 8px 32px rgba(0, 0, 0, 0.35);
  --pev-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  font-family:
    Inter,
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--pev-text-body);
  line-height: 1.6;
}
#pev a {
  text-decoration: none;
  color: inherit;
}
#pev img {
  max-width: 100%;
  height: auto;
  display: block;
}
#pev h1,
#pev h2,
#pev h3,
#pev h4,
#pev h5,
#pev h6,
#pev hr,
#pev p {
  margin: 0;
  padding: 0;
}
#pev iframe {
  display: block;
}
#pev ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#pev .pev-hero {
  background: linear-gradient(
    160deg,
    var(--pev-dark) 0,
    var(--pev-dark2) 40%,
    var(--pev-dark3) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 90px 24px 70px;
}
#pev .pev-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 180%;
  height: 220%;
  background:
    radial-gradient(
      ellipse at 25% 40%,
      rgba(230, 57, 70, 0.07) 0,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 70%,
      rgba(244, 162, 97, 0.05) 0,
      transparent 55%
    );
  animation: pevFloat 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes pevFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-20px, -15px) scale(1.02);
  }
}
#pev .pev-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--pev-gradient);
}
#pev .pev-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
#pev .pev-hero-flyer {
  flex: 0 0 420px;
  max-width: 420px;
  width: 100%;
}
#pev .pev-hero-flyer img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--pev-radius);
  box-shadow: var(--pev-shadow-hero);
  border: 2px solid rgba(230, 57, 70, 0.15);
  transition: var(--pev-transition);
}
#pev .pev-hero-flyer img:hover {
  transform: scale(1.03) rotate(-0.5deg);
  box-shadow: 0 16px 48px rgba(230, 57, 70, 0.2);
  border-color: var(--pev-primary);
}
#pev .pev-hero-info {
  flex: 1;
  min-width: 0;
}
#pev .pev-hero-titulo {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 36px 0 !important;
  padding: 0 !important;
  background: var(--pev-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
}
#pev .pev-hero-datos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#pev .pev-hero-dato {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #d0d0d8;
  transition: var(--pev-transition);
}
#pev .pev-hero-dato:hover {
  transform: translateX(5px);
}
#pev .pev-hero-dato i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--pev-transition);
}
#pev .pev-hero-dato:hover i {
  transform: scale(1.12);
}
#pev .pev-dato-fecha i {
  background: rgba(230, 57, 70, 0.12);
  color: var(--pev-primary);
  border: 1px solid rgba(230, 57, 70, 0.25);
}
#pev .pev-dato-hora i {
  background: rgba(244, 162, 97, 0.12);
  color: var(--pev-secondary);
  border: 1px solid rgba(244, 162, 97, 0.25);
}
#pev .pev-dato-lugar i {
  background: rgba(46, 196, 182, 0.12);
  color: var(--pev-accent);
  border: 1px solid rgba(46, 196, 182, 0.25);
}
#pev .pev-dato-entrada i {
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.25);
}
#pev .pev-dato-entrada span {
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
#pev .pev-body {
  background: var(--pev-bg);
  padding: 50px 24px 100px;
}
#pev .pev-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
#pev .pev-card {
  background: var(--pev-card-bg);
  border-radius: var(--pev-radius);
  border: 1px solid var(--pev-border);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--pev-shadow-card);
  transition: var(--pev-transition);
  position: relative;
  overflow: hidden;
}
#pev .pev-card:hover {
  box-shadow: var(--pev-shadow-card-hover);
  transform: translateY(-2px);
}
#pev .pev-card:last-child {
  margin-bottom: 0;
}
#pev .pev-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 24px 0 !important;
  padding: 0 0 16px 0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pev-text-dark);
  border-bottom: 2px solid var(--pev-border-light) !important;
  line-height: 1.3;
}
#pev .pev-card-title i {
  font-size: 1rem;
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
#pev .pev-card-title .pev-ic-share {
  background: #fff0f0;
  color: var(--pev-primary);
}
#pev .pev-card-title .pev-ic-desc {
  background: #fff5eb;
  color: #e67e22;
}
#pev .pev-card-title .pev-ic-schedule {
  background: #e8faf8;
  color: var(--pev-accent);
}
#pev .pev-card-title .pev-ic-judges {
  background: #eef0ff;
  color: #5b6abf;
}
#pev .pev-card-title .pev-ic-music {
  background: #fce4ec;
  color: #c0392b;
}
#pev .pev-card-title .pev-ic-org {
  background: #fff8e1;
  color: #f39c12;
}
#pev .pev-card-title .pev-ic-map {
  background: #e0f7fa;
  color: #00897b;
}
#pev .pev-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#pev .pev-social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff !important;
  text-decoration: none !important;
  transition: var(--pev-transition);
  position: relative;
  overflow: hidden;
}
#pev .pev-social-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
#pev .pev-sl-fb {
  background: #1877f2;
}
#pev .pev-sl-ig {
  background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
}
#pev .pev-sl-wa {
  background: #25d366;
}
#pev .pev-sl-tw {
  background: #1da1f2;
}
#pev .pev-sl-tk {
  background: #111;
  border: 1px solid #ddd;
}
#pev .pev-sl-yt {
  background: red;
}
#pev .pev-desc-body {
  color: var(--pev-text-body);
  font-size: 0.98rem;
  line-height: 1.9;
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 !important;
  padding: 0 !important;
}
#pev .pev-desc-body strong {
  color: var(--pev-text-dark);
  font-weight: 700;
}
#pev .pev-desc-body em {
  color: var(--pev-text-muted);
  font-style: italic;
}
#pev .pev-desc-divider {
  border: none !important;
  height: 1px;
  background: var(--pev-border) !important;
  margin: 30px 0 !important;
  padding: 0 !important;
}
#pev .pev-schedule-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
#pev .pev-schedule-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--pev-border-light);
  transition: var(--pev-transition);
  border-radius: var(--pev-radius-xs);
}
#pev .pev-schedule-row:last-child {
  border-bottom: none;
}
#pev .pev-schedule-row:hover {
  background: #f9f9fb;
}
#pev .pev-schedule-time {
  flex: 0 0 100px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--pev-accent);
  background: #e8faf8;
  padding: 6px 12px;
  border-radius: var(--pev-radius-xs);
  text-align: center;
  letter-spacing: 0.3px;
}
#pev .pev-schedule-desc {
  color: var(--pev-text-body);
  font-size: 0.95rem;
  line-height: 1.4;
}
#pev .pev-subsection {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--pev-border-light);
}
#pev .pev-subsection-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  color: var(--pev-text-dark);
  letter-spacing: 0.5px;
  border: none !important;
  line-height: 1.3;
}
#pev .pev-subsection-title .pev-ic-price {
  color: #e67e22;
}
#pev .pev-subsection-title .pev-ic-trophy {
  color: #f1c40f;
}
#pev .pev-price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#pev .pev-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: #fafafa;
  border-radius: var(--pev-radius-xs);
  border: 1px solid var(--pev-border-light);
  transition: var(--pev-transition);
  gap: 16px;
}
#pev .pev-price-row:hover {
  background: #fff5eb;
  border-color: rgba(230, 126, 34, 0.2);
}
#pev .pev-price-name {
  color: var(--pev-text-body);
  font-size: 0.93rem;
  line-height: 1.4;
}
#pev .pev-price-amount {
  font-weight: 800;
  color: #e67e22;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
#pev .pev-prize-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#pev .pev-prize-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fffef5, #fff9e6);
  border-radius: var(--pev-radius-xs);
  border: 1px solid rgba(241, 196, 15, 0.25);
  transition: var(--pev-transition);
  gap: 16px;
}
#pev .pev-prize-row:hover {
  background: linear-gradient(135deg, #fff9e6, #fff3cc);
  border-color: rgba(241, 196, 15, 0.45);
  transform: translateX(3px);
}
#pev .pev-prize-cat {
  color: var(--pev-text-body);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.4;
}
#pev .pev-prize-amount {
  font-weight: 900;
  color: #d4a017;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}
#pev .pev-judge {
  padding: 16px 0;
  border-bottom: 1px solid var(--pev-border-light);
}
#pev .pev-judge:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#pev .pev-judge:first-child {
  padding-top: 0;
}
#pev .pev-judge-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: #5b6abf;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
#pev .pev-judge-name::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #5b6abf;
  border-radius: 50%;
  flex-shrink: 0;
}
#pev .pev-judge-bio {
  color: var(--pev-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 0 0 18px !important;
  margin: 0 !important;
}
#pev .pev-staff {
  padding: 16px 0;
  border-bottom: 1px solid var(--pev-border-light);
}
#pev .pev-staff:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#pev .pev-staff:first-child {
  padding-top: 0;
}
#pev .pev-staff-role {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pev-primary);
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
#pev .pev-staff-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--pev-text-dark);
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  line-height: 1.3;
}
#pev .pev-staff-bio {
  color: var(--pev-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 !important;
  padding: 0 !important;
}
#pev .pev-org-name {
  font-weight: 800;
  font-size: 1.08rem;
  color: #e67e22;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
#pev .pev-org-name::before {
  content: "";
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--pev-gradient);
  border-radius: 50%;
  flex-shrink: 0;
}
#pev .pev-org-bio {
  color: var(--pev-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0 !important;
  padding: 0 !important;
}
#pev .pev-location-addr {
  color: var(--pev-text-muted);
  font-size: 0.93rem;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
#pev .pev-location-addr i {
  color: #00897b;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
#pev .pev-map-frame {
  border-radius: var(--pev-radius-sm);
  overflow: hidden;
  margin: 0 0 18px 0;
  border: 1px solid var(--pev-border);
}
#pev .pev-map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}
#pev .pev-btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: var(--pev-gradient);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  transition: var(--pev-transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}
#pev .pev-btn-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}
@media (max-width: 1100px) {
  #pev .pev-hero-inner {
    gap: 40px;
  }
  #pev .pev-hero-flyer {
    flex: 0 0 350px;
    max-width: 350px;
  }
  #pev .pev-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  #pev .pev-hero {
    padding: 60px 20px 50px;
  }
  #pev .pev-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  #pev .pev-hero-flyer {
    flex: 0 0 auto;
    max-width: 380px;
    margin: 0 auto;
  }
  #pev .pev-hero-titulo {
    font-size: clamp(1.5rem, 5vw, 2.4rem) !important;
    margin-bottom: 28px !important;
  }
  #pev .pev-hero-datos {
    align-items: center;
  }
  #pev .pev-hero-dato {
    justify-content: center;
  }
  #pev .pev-body {
    padding: 36px 20px 70px;
  }
  #pev .pev-body-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #pev .pev-card {
    margin-bottom: 24px;
  }
}
@media (max-width: 650px) {
  #pev .pev-hero {
    padding: 45px 16px 40px;
  }
  #pev .pev-hero-flyer {
    max-width: 320px;
  }
  #pev .pev-hero-titulo {
    font-size: clamp(1.35rem, 6vw, 1.9rem) !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
  }
  #pev .pev-hero-dato {
    font-size: 0.95rem;
    gap: 12px;
  }
  #pev .pev-hero-dato i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
    border-radius: 11px;
  }
  #pev .pev-hero-datos {
    gap: 14px;
  }
  #pev .pev-body {
    padding: 28px 16px 60px;
  }
  #pev .pev-card {
    padding: 24px 20px;
    border-radius: 14px;
    margin-bottom: 22px;
  }
  #pev .pev-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 20px !important;
    padding-bottom: 14px !important;
    gap: 10px;
  }
  #pev .pev-card-title i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.88rem;
  }
  #pev .pev-social-icons {
    gap: 10px;
    justify-content: center;
  }
  #pev .pev-social-link {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }
  #pev .pev-desc-body {
    font-size: 0.94rem;
    line-height: 1.8;
  }
  #pev .pev-desc-divider {
    margin: 26px 0 !important;
  }
  #pev .pev-schedule-time {
    flex: 0 0 88px;
    font-size: 0.83rem;
    padding: 5px 10px;
  }
  #pev .pev-schedule-desc {
    font-size: 0.9rem;
  }
  #pev .pev-schedule-row {
    gap: 12px;
    padding: 12px 8px;
  }
  #pev .pev-subsection {
    margin-top: 26px;
    padding-top: 22px;
  }
  #pev .pev-price-row {
    padding: 11px 14px;
  }
  #pev .pev-prize-row {
    padding: 12px 14px;
  }
  #pev .pev-price-name,
  #pev .pev-prize-cat {
    font-size: 0.88rem;
  }
  #pev .pev-price-amount {
    font-size: 0.95rem;
  }
  #pev .pev-prize-amount {
    font-size: 0.98rem;
  }
  #pev .pev-map-frame iframe {
    height: 240px;
  }
  #pev .pev-judge-bio,
  #pev .pev-staff-bio {
    font-size: 0.86rem;
  }
}
@media (max-width: 420px) {
  #pev .pev-hero {
    padding: 35px 12px 30px;
  }
  #pev .pev-hero-flyer {
    max-width: 260px;
  }
  #pev .pev-hero-titulo {
    font-size: clamp(1.2rem, 7vw, 1.5rem) !important;
    margin-bottom: 20px !important;
    line-height: 1.25 !important;
  }
  #pev .pev-hero-dato {
    font-size: 0.88rem;
    gap: 10px;
  }
  #pev .pev-hero-dato i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.9rem;
    border-radius: 9px;
  }
  #pev .pev-hero-datos {
    gap: 12px;
  }
  #pev .pev-body {
    padding: 22px 12px 50px;
  }
  #pev .pev-card {
    padding: 20px 16px;
    margin-bottom: 18px;
    border-radius: 12px;
  }
  #pev .pev-card-title {
    font-size: 0.95rem !important;
    gap: 8px;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
  }
  #pev .pev-card-title i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.82rem;
    border-radius: 8px;
  }
  #pev .pev-social-link {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
  #pev .pev-social-icons {
    gap: 8px;
  }
  #pev .pev-schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 6px;
  }
  #pev .pev-schedule-time {
    flex: none;
    font-size: 0.8rem;
  }
  #pev .pev-schedule-desc {
    font-size: 0.85rem;
    padding-left: 4px;
  }
  #pev .pev-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 11px 12px;
  }
  #pev .pev-price-amount {
    align-self: flex-end;
  }
  #pev .pev-prize-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 12px;
  }
  #pev .pev-prize-amount {
    align-self: flex-end;
  }
  #pev .pev-btn-directions {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  #pev .pev-map-frame iframe {
    height: 200px;
  }
  #pev .pev-desc-body {
    font-size: 0.9rem;
    line-height: 1.75;
  }
  #pev .pev-desc-divider {
    margin: 22px 0 !important;
  }
  #pev .pev-subsection {
    margin-top: 22px;
    padding-top: 20px;
  }
  #pev .pev-subsection-title {
    font-size: 0.95rem !important;
  }
  #pev .pev-judge-name,
  #pev .pev-staff-name {
    font-size: 0.95rem;
  }
  #pev .pev-judge-bio,
  #pev .pev-org-bio,
  #pev .pev-staff-bio {
    font-size: 0.84rem;
  }
  #pev .pev-judge,
  #pev .pev-staff {
    padding: 14px 0;
  }
  #pev .pev-org-name {
    font-size: 1rem;
  }
}
@media (max-width: 340px) {
  #pev .pev-hero {
    padding: 28px 10px 25px;
  }
  #pev .pev-hero-flyer {
    max-width: 220px;
  }
  #pev .pev-hero-titulo {
    font-size: 1.15rem !important;
  }
  #pev .pev-hero-dato {
    font-size: 0.82rem;
  }
  #pev .pev-hero-dato i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.82rem;
  }
  #pev .pev-card {
    padding: 16px 12px;
  }
  #pev .pev-card-title {
    font-size: 0.88rem !important;
  }
  #pev .pev-social-link {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  #pev .pev-body {
    padding: 18px 10px 40px;
  }
}
#pev .pev-body-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
}
#pev .pev-col-left,
#pev .pev-col-right {
  width: 100% !important;
  max-width: 100% !important;
}
#pev .pev-hero-inner {
  display: flex !important;
  flex-wrap: wrap !important;
}
@media (max-width: 900px) {
  #pev .pev-body-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  #pev .pev-hero-inner {
    flex-direction: column !important;
  }
}
