@charset "UTF-8";
/* CSS Document */

/* =========================
   HOME
   ========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}
.hero {
  min-height: 100vh;
  background-image: url("../images/home/campotosto-home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.brand {
  position: absolute;
  top: 6.9%;
  left: 12%;
  width: 350px;
  text-align: center;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  margin: 0 auto;
}

.brand-name {
  display: block;
  width: 210px;
  height: auto;
  margin: 16px auto 0;
}

.brand-claim {
  margin: 10px 0 0;
  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 400;
}


.book-feature {
  position: absolute;
  top: 55.1%;
  left: 30%;

  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.book-cover {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.book-info {
  padding-top: 22px;
}

.book-title {
  margin: 0;
  font-family: "baskerville-display-pt", Baskerville, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.book-subtitle {
  margin: 8px 0 0;
  font-family: "baskerville-display-pt", Baskerville, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.1;
  font-style: italic;
}

.book-links {
  display: flex;
  gap: 62px;
  margin-top: 38px;
}

.book-link {
  font-family: "baskerville-display-pt", Baskerville, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  color: #5F0F66;
}


.main-nav {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 7%;

  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.025em;

  color: #ffffff;
  text-decoration: none;
}

.nav-item img {
  display: block;
  width: 100px;
  height: auto;
  margin-top: 4px;
}


/* =========================
   RESPONSIVE HOME
   ========================= */

@media (max-width: 1200px) {

	.brand {
    width: 280px;
    transform: scale(0.78);
    transform-origin: top center;
  }

  .book-feature {
    left: 30%;
    transform: scale(0.78);
    transform-origin: top left;
  }

  .book-links {
    gap: 35px;
    margin-top: 24px;
  }

  .book-link {
    font-size: 18px;
    white-space: nowrap;
  }
	
  .main-nav {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 18px;
    left: 8%;
    right: 8%;
    bottom: 4%;
  }

  .nav-item {
    font-size: 18px;
  }

  .nav-item img {
    width: 80px;
  }
}


@media (max-width: 768px) {

  .brand {
    top: 4%;
    left: 50%;
    width: 240px;
    transform: translateX(-50%) scale(0.65);
    transform-origin: top center;
  }

	.book-feature {
  top: 43%;
  left: 50%;
  width: 90%;

  transform: translateX(-50%);
  transform-origin: top center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

	.book-cover {
  width: 75px;
}

	.book-info {
  padding-top: 0;
  width: 100%;
  text-align: center;
}

	.book-title {
  font-size: 20px;
  line-height: 1.05;
}

	.book-subtitle {
  margin-top: 5px;
  font-size: 16px;
}

	.book-links {
  justify-content: center;
  gap: 28px;
  margin-top: 14px;
}

	.book-link {
  font-size: 16px;
  white-space: nowrap;
}

  .main-nav {
    left: 5%;
    right: 5%;
    bottom: 3%;

    grid-template-columns: repeat(4, 1fr);
    row-gap: 14px;
  }

  .nav-item {
    font-size: 16px;
  }

  .nav-item img {
    width: 68px;
  }
}


/* =========================
   PAGINE INTERNE
   ========================= */

.inner-page {
  margin: 0;
  background: #f2f3f7;
  color: #000;
	
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.22),
    rgba(0, 0, 0, 0)
  );

  pointer-events: none;
}

.header-inner,
.content-container,
.footer-container {
  width: min(1200px, calc(100% - 60px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  position: relative;
  z-index: 1;
}

.header-brand {
  position: absolute;
  top: 30px;
  left: 0;

  filter: drop-shadow(0 1px 2px rgba(255,255,255,0.18));

  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
}

.header-logo {
  width: 90px;
  height: auto;
}

.header-name {
  width: 170px;
  height: auto;
}

.inner-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;

  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
}

.inner-nav-item {
  position: relative;
  text-align: center;

  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 19px;
  font-weight: 700;

  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.active-mark {
  display: block;
  width: 100px;
  height: auto;
  margin: 4px auto 0;
}

.inner-main {
  flex: 1;
  padding: 60px 0;
}

.page-title {
  margin: 0 0 28px;
  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5F0F66;
}

.book-heading {
  display: flex;
  align-items: center;
  gap: 25px;
}

.book-heading-cover {
  width: 90px;
  height: auto;
}

.book-heading h2 {
  margin: 0;
  font-family: "baskerville-display-pt", Baskerville, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
}

.book-heading p {
  margin: 4px 0 0;
  font-family: "baskerville-display-pt", Baskerville, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.book-heading-text .book-intro {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 18px;
}


.site-footer {
  min-height: 160px;
  background: #77739A;
  color: #fff;
}

.footer-container {
  padding: 18px 0 12px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 4px;

  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 18px;
}

.footer-column strong {
  font-size: 18px;
}

.footer-column a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 8px;

  border-top: 1px solid rgba(255,255,255,.45);

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "cormorant-garamond", Garamond, Georgia, serif;
  font-size: 14px;
}


/* =========================
   RESPONSIVE PAGINE INTERNE
   ========================= */

@media (max-width: 1200px) {

/* header */
  .header-inner,
  .content-container,
  .footer-container {
    width: min(100%, calc(100% - 40px));
  }

  .header-brand {
    transform: scale(0.85);
    transform-origin: top left;
  }

  .inner-nav {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 14px;
  }

  .inner-nav-item {
    font-size: 17px;
  }

  .active-mark {
    width: 80px;
  }

/* main */
  .book-heading {
    gap: 20px;
  }

  .book-heading-cover {
    width: 80px;
  }

  .book-heading h2 {
    font-size: 28px;
  }

  .book-heading p {
    font-size: 21px;
  }

  .page-title {
    font-size: 24px;
  }

/* footer */
  .footer-top {
    gap: 20px;
  }

  .footer-column {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
  }

}


@media (max-width: 768px) {

/* header */
  .site-header {
    height: 300px;
  }

  .header-brand {
    top: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .inner-nav {
    left: 0;
    right: 0;
    bottom: 18px;

    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }

  .inner-nav-item {
    font-size: 15px;
  }

  .active-mark {
    width: 62px;
  }

/* main */
  .inner-main {
    padding: 40px 0;
  }

  .page-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .book-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .book-heading-cover {
    width: 75px;
  }

  .book-heading h2 {
    font-size: 24px;
  }

  .book-heading p {
    font-size: 18px;
  }

/* footer */
  .site-footer {
    min-height: auto;
  }

  .footer-container {
    padding: 24px 0 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}


/* ==================================================
   PAGINA DETTAGLIO LIBRO
   ================================================== */

/* --- Apertura: copertina + titolo --- */

.book-detail-heading {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 65px;
  align-items: center;
  padding: 30px 0 70px;
}

.book-detail-cover {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
}

.book-detail-text {
  max-width: 720px;
}

.book-detail-text h1 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
}

.book-detail-subtitle {
  margin: 0 0 30px;
  font-size: 21px;
  line-height: 1.4;
  font-style: italic;
}

.book-detail-intro {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  font-style: normal;
}


/* --- Link / pulsanti del libro --- */

.book-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}

.book-detail-actions .book-link {
  display: inline-block;
  text-decoration: none;
}


/* --- Sezioni testuali --- */

.book-detail-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 55px 0;
}

.book-detail-section h2 {
  margin: 0 0 25px;
  font-size: 28px;
  line-height: 1.2;
}

.book-detail-section p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
}

.book-detail-section p:last-child {
  margin-bottom: 0;
}


/* --- Citazione centrale --- */

.book-quote {
  max-width: 900px;
  margin: 35px auto;
  padding: 55px 70px;
  text-align: center;
}

.book-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-size: 27px;
  line-height: 1.5;
  font-style: italic;
}


/* --- Chiusura pagina --- */

.book-detail-footer {
  max-width: 820px;
  margin: 20px auto 0;
  padding: 45px 0 70px;
  text-align: center;
}

.book-detail-footer > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.book-detail-footer .book-detail-actions {
  justify-content: center;
}


/* =========================
   RESPONSIVE DETTAGLIO LIBRO
   ========================= */

@media (max-width: 1200px) {

  .header-diario {
    background-position: 75% center;
  }
	
  .book-detail-heading {
    grid-template-columns: 230px 1fr;
    gap: 45px;
  }

  .book-detail-text h1 {
    font-size: 34px;
  }

  .book-detail-subtitle {
    font-size: 20px;
  }

}


@media (max-width: 768px) {
	
  .header-diario {
    background-position: 65% center;
  }

  .book-detail-heading {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 20px 0 50px;
  }

  .book-detail-cover {
    max-width: 230px;
    margin: 0 auto;
  }

  .book-detail-text {
    max-width: none;
    text-align: center;
  }

  .book-detail-text h1 {
    font-size: 30px;
  }

  .book-detail-actions {
    justify-content: center;
  }

  .book-detail-section {
    padding: 40px 0;
  }

  .book-quote {
    margin: 20px auto;
    padding: 40px 20px;
  }

  .book-quote blockquote {
    font-size: 23px;
  }

  .book-detail-footer {
    padding: 35px 0 55px;
  }

}


/* ==================================================
   PAGINA ESTRATTO
   ================================================== */

/* --- Intestazione dell'estratto --- */

.excerpt-heading {
  max-width: 820px;
  margin: 0 auto;
  padding: 35px 0 55px;
  text-align: center;
}

.excerpt-kicker {
  margin: 0 0 18px;
  font-size: 17px;
  font-style: italic;
}

.excerpt-heading h1 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.2;
}

.excerpt-subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-style: italic;
}


/* --- Titolo del capitolo --- */

.excerpt-chapter-heading {
  margin-bottom: 50px;
  text-align: center;
}

.excerpt-label {
  margin: 0 0 30px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.excerpt-chapter-heading h2 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.2;
}

.excerpt-chapter-title {
  margin: 0;
  font-size: 22px;
  font-style: italic;
}


/* --- Testo del libro --- */

.excerpt-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 55px 0 65px;
}

.excerpt-content > p {
  margin: 0 0 1.15em;
  font-family: Baskerville, "Baskerville Old Face",
               "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
}


/* Primo paragrafo */

.excerpt-content > p:first-of-type {
  margin-top: 0;
}


/* --- Chiusura dell'estratto --- */

.excerpt-ending {
  margin-top: 28px !important;
  margin-bottom: 0 !important;
  font-size: 20px !important;
  font-style: italic;
}


/* --- Continua il viaggio --- */

.excerpt-footer {
  max-width: 740px;
  margin: 0 auto;
  padding: 50px 0 75px;
  text-align: center;
}

.excerpt-footer-title {
  margin: 0;
  font-size: 25px;
  font-style: italic;
}

.excerpt-footer .book-detail-actions {
  justify-content: center;
}


/* ==================================================
   RESPONSIVE ESTRATTO
   ================================================== */

@media (max-width: 1200px) {

  .excerpt-heading {
    max-width: 760px;
  }

  .excerpt-heading h1 {
    font-size: 34px;
  }

  .excerpt-content,
  .excerpt-footer {
    max-width: 700px;
  }

}


@media (max-width: 768px) {

  .excerpt-heading {
    padding: 20px 0 45px;
  }

  .excerpt-kicker {
    font-size: 16px;
  }

  .excerpt-heading h1 {
    font-size: 30px;
  }

  .excerpt-subtitle {
    font-size: 18px;
  }

  .excerpt-content {
    padding: 40px 0 50px;
  }

  .excerpt-chapter-heading {
    margin-bottom: 40px;
  }

  .excerpt-content > p {
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
    hyphens: none;
  }

  .excerpt-ending {
    font-size: 19px !important;
  }

  .excerpt-footer {
    padding: 40px 0 55px;
  }

}


/* ==================================================
   PAGINA CHI SONO
   ================================================== */

.about-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0 70px;
}


/* --- Introduzione --- */

.about-intro {
  padding: 20px 0 55px;
}

.about-lead {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.4;
  font-style: italic;
}

.about-intro p,
.about-section p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.75;
}


/* --- Sezioni interne --- */

.about-section {
  padding: 55px 0;
}

.about-section h2 {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.2;
}


/* --- Chiusura --- */

.about-closing {
  margin-top: 35px !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-style: italic;
}

.about-signature {
  margin-top: 35px !important;
  margin-bottom: 0 !important;
  font-size: 18px !important;
  font-style: italic;
  text-align: right;
}


/* ==================================================
   RESPONSIVE CHI SONO
   ================================================== */

@media (max-width: 1200px) {

  .site-header.header-chi-sono {
    background-position: 30% center;
  }
	
  .about-content {
    max-width: 760px;
  }

  .about-lead {
    font-size: 22px;
  }

  .about-section h2 {
    font-size: 26px;
  }

}


@media (max-width: 768px) {
	
  .site-header.header-chi-sono {
    background-position: 18% center;
  }
	
  .about-content {
    padding: 10px 0 50px;
  }

  .about-intro {
    padding: 15px 0 40px;
  }

  .about-lead {
    margin-bottom: 25px;
    font-size: 21px;
  }

  .about-intro p,
  .about-section p {
    font-size: 17px;
    line-height: 1.7;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-section h2 {
    margin-bottom: 24px;
    font-size: 25px;
  }

  .about-closing {
    margin-top: 30px !important;
    font-size: 19px !important;
  }

  .about-signature {
    margin-top: 30px !important;
    font-size: 17px !important;
  }

}


/* ==================================================
   PAGINA CONTATTI
   ================================================== */

.contact-page {
  padding: 70px 0 90px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: start;

  max-width: 1000px;
  margin: 0 auto;
}


/* --- Testo --- */

.contact-content {
  max-width: 620px;
}

.contact-intro {
  margin: 0 0 45px;
  font-size: 18px;
  line-height: 1.75;
}

.contact-section {
  margin-bottom: 38px;
}

.contact-section h2 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.2;
}

.contact-section p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.7;
}

.contact-section a {
  color: #5F0F66;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}


/* --- Frase finale --- */

.contact-quote {
  margin: 50px 0 0;
  font-size: 21px;
  line-height: 1.6;
  font-style: italic;
}


/* --- Foto autrice --- */

.contact-photo {
  margin: 0;
}

.contact-photo img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-left: auto;

  padding: 3px;
  border: 1px solid rgba(95, 15, 102, 0.28);
  background: transparent;
}

.contact-photo figcaption {
  margin-top: 12px;
  text-align: right;
  font-size: 16px;
  font-style: italic;
}


/* ==================================================
   RESPONSIVE CONTATTI
   ================================================== */

@media (max-width: 1200px) {

  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 55px;
    max-width: 900px;
  }

  .contact-photo img {
    max-width: 330px;
  }

  .contact-intro {
    font-size: 17px;
  }

}


@media (max-width: 768px) {

  .contact-page {
    padding: 50px 0 70px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 100%;
  }

  .contact-content {
    max-width: none;
  }

  .contact-intro {
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.7;
  }

  .contact-section {
    margin-bottom: 32px;
  }

  .contact-section h2 {
    font-size: 23px;
  }

  .contact-section p {
    font-size: 17px;
    line-height: 1.7;
  }

  .contact-quote {
    margin-top: 40px;
    font-size: 19px;
  }

  .contact-photo {
    text-align: center;
  }

  .contact-photo img {
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-photo figcaption {
    max-width: 320px;
    margin: 12px auto 0;
    text-align: right;
  }

}


/* ==================================================
   PAGINA PRIVACY E COOKIE
   ================================================== */

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0 75px;
}


/* --- Data aggiornamento --- */

.privacy-updated {
  margin: 0 0 45px;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.75;
}


/* --- Sezioni --- */

.privacy-section {
  margin: 0;
  padding: 38px 0;
}

.privacy-section:first-of-type {
  padding-top: 0;
}

.privacy-section h2 {
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.25;
}

.privacy-section p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}


/* --- Link --- */

.privacy-section a {
  color: #5F0F66;
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}


/* --- Cookie: compensazione per link #cookie --- */

#cookie {
  scroll-margin-top: 30px;
}


/* ==================================================
   RESPONSIVE PRIVACY E COOKIE
   ================================================== */

@media (max-width: 1200px) {

  .privacy-content {
    max-width: 760px;
  }

  .privacy-section h2 {
    font-size: 24px;
  }

}


@media (max-width: 768px) {

  .privacy-content {
    padding: 10px 0 55px;
  }

  .privacy-updated {
    margin-bottom: 35px;
    font-size: 14px;
  }

  .privacy-section {
    padding: 32px 0;
  }

  .privacy-section h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .privacy-section p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

}


/* ==================================================
   PAGINA PRIMO PASSO
   ================================================== */

.first-step-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0 75px;
}


/* --- Introduzione --- */

.first-step-intro {
  padding: 15px 0 45px;
}

.first-step-intro p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.75;
}


/* --- Parole che hanno lasciato il segno --- */

.first-step-words {
  max-width: 700px;
  margin: 45px auto 55px;
  padding: 35px 45px;
  text-align: center;
}

.first-step-words p {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.45;
  font-style: italic;
}

.first-step-words p:last-child {
  margin-bottom: 0;
}


/* --- Racconto --- */

.first-step-story {
  padding: 20px 0 40px;
}

.first-step-story p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.75;
}

.first-step-emphasis {
  margin: 30px 0 !important;
  font-size: 20px !important;
  font-style: italic;
}


/* --- Frase conclusiva --- */

.first-step-closing {
  margin-top: 35px !important;
  font-size: 21px !important;
  line-height: 1.6 !important;
  font-style: italic;
}


/* --- Fonte e riferimento al libro --- */

.first-step-source {
  margin-top: 55px;
  padding-top: 35px;
  border-top: 1px solid rgba(95, 15, 102, 0.18);
}

.first-step-source p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
}

.first-step-source a {
  color: #5F0F66;
  text-decoration: none;
}

.first-step-source a:hover {
  text-decoration: underline;
}

.first-step-book-reference {
  margin-top: 25px !important;
  font-style: italic;
}


/* --- Dedica finale --- */

.first-step-dedication {
  max-width: 700px;
  margin: 60px auto 0;
  padding-top: 35px;
  text-align: center;
}

.first-step-dedication p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
}


/* ==================================================
   RESPONSIVE PRIMO PASSO
   ================================================== */

@media (max-width: 1200px) {

  .first-step-content {
    max-width: 760px;
  }

  .first-step-words {
    max-width: 650px;
    padding: 30px 35px;
  }

  .first-step-words p {
    font-size: 19px;
  }

}


@media (max-width: 768px) {

  .first-step-content {
    padding: 10px 0 55px;
  }

  .first-step-intro {
    padding: 10px 0 35px;
  }

  .first-step-intro p,
  .first-step-story p {
    font-size: 17px;
    line-height: 1.7;
  }

  .first-step-words {
    margin: 35px auto 45px;
    padding: 25px 18px;
  }

  .first-step-words p {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
  }

  .first-step-emphasis {
    margin: 25px 0 !important;
    font-size: 19px !important;
  }

  .first-step-closing {
    margin-top: 30px !important;
    font-size: 19px !important;
  }

  .first-step-source {
    margin-top: 45px;
    padding-top: 30px;
  }

  .first-step-source p {
    font-size: 15px;
  }

  .first-step-dedication {
    margin-top: 50px;
    padding-top: 30px;
  }

  .first-step-dedication p {
    font-size: 17px;
  }

}

