/* Reseting browser's styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
body {
  font-family: 'museo-sans','interstate-condensed', Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

.body-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
}

/* Header */
.header {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 996px;
}

.logo {
  display: block;
  margin: 60px 0;
}

.logo img {
  width: 100%;
  max-width: 156px;
}

.title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

.subtitle span {
  font-weight: 900;
  text-transform: uppercase;
  color: #A6E324;
}

.subheading {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

/* Content */
.content {
  margin: 0 auto auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 1260px;
}

.content h2 {
  margin: 20px 0;
}

.content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.content p:last-child {
  margin-bottom: 0;
}

.content a {
  color: inherit;
}

.content ul {
  margin-bottom: 20px;
  margin-left: 18px;
}

.content ul:last-child {
  margin-bottom: 0;
}

.content ul ul {
  margin-top: 10px;
}

.content li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.content li:last-child {
  margin-bottom: 0;
}

.editions {
  margin-bottom: 80px;
}

.page-turner {
  margin: 0 -30px;
}

.page-turner:last-child {
  margin-top: 80px;
}

.page-turner-embed {
  width: 100%;
  max-width: 100%;
  height: 360px;
}

.page-turner-edition {
  text-align: center;
  font-size: 18px;
  font-weight: 300;

  & span {
    font-weight: 600;
  }
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.extra-info a {
  font-weight: 700;
  color: #000;
}

/* Footer */
.footer {
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.footer-inner {
  display: grid;
  gap: 10px;
  padding: 0px 30px;
}

.footer-inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.14;
}

.footer-inner a {
  color: initial;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.social-links img {
  display: block;
  transition: transform 0.3s ease;
}

.flag-banner {
  margin-top: 10px;
}

.flag-banner img {
  width: 100%;
  display: block;
}

/* Small Screens (Same breakpoint as "tsmall") */
@media (min-width: 520px) {
  .page-turner-embed {
    height: 480px;
  }
}

/* Medium Screens (Same breakpoint as "smedium") */
@media (min-width: 768px) {
  .logo img {
    max-width: 296px;
  }

  .title {
    font-size: 88px;
    line-height: 0.8;
  }

  .subtitle {
    font-size: 20px;
    line-height: 1.1;
  }

  .subheading{
    font-size: 24px;
  }

  .content {
    padding-top: 25px;
  }

  .page-turner-embed {
    height: 540px;
  }
  
}

/* Large Screens (Same breakpoint as "mlarge") */
@media (min-width: 980px) {
  .title {
    font-size: 107px;
    line-height: 0.8;
  }

  .subtitle {
    font-size: 24px;
    line-height: 1.3;
  }

  .subheading {
    font-size: 30px;
  }

  .page-turner-embed {
    height: 620px;
  }

  .footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 30px;
  }
}

/* Extra Large Screens (Same breakpoint as "xlarge") */
@media (min-width: 1260px) {
  .page-turner-embed {
    height: 700px;
  }
}

/* Extra Extra Large Screens (Same breakpoint as "xxxlarge") */
@media (min-width: 1600px) {
  .page-turner-embed {
    height: 780px;
  }
}
