body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.andalucia-intro {
  position: relative;
}

.andalucia-intro .desktop {
  display: none;
}

p.andalucia-summary {
  color: var(--Ladrillo, #bd8a29);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 136.364% */
  padding: 0 20px;
  margin-bottom: 32px;
  animation: opacity 1.5s 0.5s both ease;
}

.andalucia-body {
  padding: 0 20px;
  margin-bottom: 24px;
}

.andalucia-body > p {
  color: var(--Negro, #333);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
  view-timeline-name: --crawl-timeline;
  animation: enter linear both;
  animation-timeline: --crawl-timeline;
  animation-range: entry 0% cover 40%;
  margin-bottom: 20px;
}

.andalucia-body > p b {
  font-weight: 500;
}

.andalucia-blockquote {
  padding: 0 20px;
  margin-bottom: 40px;
}

.andalucia-blockquote svg {
  margin: 0 auto 10px;
  display: block;
  view-timeline-name: --crawl-timeline;
  animation: rotate linear both;
  animation-timeline: --crawl-timeline;
  animation-range: entry 0% cover 40%;
}

.andalucia-blockquote > p {
  color: var(--Negro, #202020);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  view-timeline-name: --crawl-timeline;
  animation: enter linear both;
  animation-timeline: --crawl-timeline;
  animation-range: entry 0% cover 40%;
}

.andalucia-img {
  display: block;
  margin-bottom: 40px;
  view-timeline-name: --crawl-timeline;
  animation: opacity-img linear both;
  animation-timeline: --crawl-timeline;
  animation-range: entry 0% cover 40%;
}

.andalucia-img-footer {
  margin: 0;
  color: var(--Negro, #202020);
  font-family: "Playfair Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.24px;
  padding: 0 40px;
  margin-top: 5px;
}

.andalucia-img-footer span {
  color: var(--Negro, #202020);
  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: normal;
}

.andalucia-h3 {
  color: var(--Ladrillo, #bd8a29);
  font-family: "Playfair Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 127.273% */
  margin-bottom: 24px;
  view-timeline-name: --crawl-timeline;
  animation: enter linear both;
  animation-timeline: --crawl-timeline;
  animation-range: entry 0% cover 40%;
}

.andalucia-link {
  padding: 0 40px;
  margin: 0 auto 100px;
  width: fit-content;
}

.andalucia-link a {
  color: var(--Blanco, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.16px;
  text-decoration: none;
  display: flex;
  padding: 12px 32px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 32px;
  background: var(--Ladrillo, #bd8a29);
  max-width: 441px;
  transition: background-color 0.3s;
}

.andalucia-link a:hover {
  background: #735419;
}

.andalucia-title {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.andalucia-h1 {
  color: var(--Blanco, #fff);
  text-align: center;
  text-shadow: 0 0 40px #261a04;
  font-family: "Playfair Display";
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 80px; /* 100% */
  letter-spacing: 16px;
  margin: 0 0 8px;
  animation: opacity 1.5s both ease;
}

.andalucia-h2 {
  color: var(--Blanco, #fff);
  text-align: center;
  text-shadow: 0 0 10px #261a04;
  font-family: "Playfair Display";
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 42px; /* 100% */
  letter-spacing: 0.84px;
  margin: 0;
  animation: opacity 1.5s 0.5s both ease;
}
.andalucia-footer {
  width: 100%;
  color: #333;
  background-color: #fff;
  margin: 0 auto;
  padding: 0 1rem 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.andalucia-footer h4 {
  margin: 2rem 0;
  text-align: center;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 800;
  color: #333;
  font-family: "Inter", sans-serif;
  margin: 0 0 10px;
}
.andalucia-footer p {
  font-size: 16px;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes enter {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes opacity-img {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(0);
  }
}

@media (min-width: 660px) {
  .andalucia-intro .mobile {
    display: none;
  }
  .andalucia-intro .desktop,
  .andalucia-title {
    display: block;
  }
}
@media (min-width: 980px) {
  p.andalucia-summary {
    font-size: 26px;
    line-height: 38px;
    max-width: 1080px;
    margin: 48px auto 40px;
  }

  .andalucia-body {
    padding: 0 20px;
    margin: 0 auto 40px;
    max-width: 680px;
  }

  .andalucia-body > p {
    font-size: 18px;
    line-height: 30px; /* 166.667% */
  }
  .andalucia-blockquote {
    padding: 0 20px;
    margin: 0 auto 40px;
    max-width: 1080px;
  }

  .andalucia-blockquote svg {
    margin: 0 auto 10px;
    display: block;
  }

  .andalucia-blockquote > p {
    font-size: 26px;
    line-height: 36px; /* 138.462% */
    letter-spacing: -0.52px;
  }

  .andalucia-img {
    display: block;
    margin-bottom: 72px;
  }

  .andalucia-img-footer {
    font-size: 14px;
    line-height: 18px; /* 128.571% */
    letter-spacing: -0.28px;
    margin-top: 8px;
  }

  .andalucia-img-footer span {
    color: var(--Negro, #202020);
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: normal;
  }

  .andalucia-h3 {
    font-size: 26px;
    line-height: 32px; /* 123.077% */
  }
}

.c-detail__body .c-detail__embed {
  width: 100%;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: unset !important;
}

.c-detail__body .c-detail__embed:last-of-type {
  margin-bottom: 0 !important;
}

.c-detail--special
  .c-detail__content
  .c-detail__body
  .c-detail__embed
  .c-detail__embed__code {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100% !important;
  padding: 0;
}

.c-detail--special
  .c-detail__content
  .c-detail__body
  .c-detail__embed
  .c-detail__embed__code
  > div {
  width: 100%;
}

.c-detail--special .c-detail__content .c-detail__body {
  max-width: inherit;
  margin-top: -9px;
}

.c-detail--special .c-detail__content .c-detail__data {
  display: none;
}

body .c-header__nav-btn .hamburger-inner,
body .c-header__nav-btn .hamburger-inner:after,
body .c-header__nav-btn .hamburger-inner:before {
  background: black;
}

body .c-header__brand__logo path,
body .c-header__brand__logo polygon {
  fill: #000;
}

body .c-header__custom {
  bottom: -2px;
}

body .c-header__custom > a {
  color: var(--Negro-textos, #1a1a1a);
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 140% */
  letter-spacing: -0.2px;
}

body .c-header__custom a:last-child:after {
  content: "";
  background-image: url(https://dkumiip2e9ary.cloudfront.net/xalok/20-minutos/especiales/junta-andalucia/assets/granada-logo.png);
  height: 40px;
  width: 56px;
  background-size: contain;
  background-repeat: no-repeat;
}

body .c-header__custom a {
  align-items: center;
  text-align: center;
  display: flex;
  padding: 0 10px 10px;
  gap: 10px;
}

body .c-header__main__custom {
  height: 15rem;
}

body .c-header__custom__text {
  color: var(--Negro-textos, #1a1a1a);
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 140% */
  letter-spacing: -0.2px;
}

body .c-header__user__icon{
    fill: #000;
    color: #000;

}

@media (min-width: 768px) {
  body .c-header__custom a {
    text-align: right;
    max-width: 394px;
  }
  body .c-header__custom__logo {
    max-width: 6rem;
  }
  body .c-header__main__custom {
    height: auto;
  }
  body .c-header__custom {
    justify-content: right;
  }
}

@media (min-width: 980px) {
  body .c-header__custom a {
    text-align: right;
    max-width: 394px;
  }
  body .c-header__custom__logo {
    max-width: 12rem;
  }
}
 