

.blog-illustration img {
    width: 100%;
    height: 100%;
    border-radius: 5ch;
}

.blog-template-title {
    /* padding-bottom: 0rem; */
    margin-top: 2rem;
}

.blog-template-publishing-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 5rem;
    row-gap: 0;  
}

.blog-template-content {
    font-family: 'Arial';
}

.references-title {
    font-size: 90%;
}

.references p {
    font-size: 90%;
}

.disclaimer {
    font-style: italic;
    font-size: 90%;
}

.blog-template-main {
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
  max-width: 75ch;
  margin-inline: auto; 
}


.blog-template-title h1 {
    font-size: 2rem;
    line-height: 1.3;
}

/* max-width: 425px (small phones) */
@media only screen and (max-width: 425px) {
    .blog-template-main {
        /* padding-left: 1.5rem;
        padding-right: 1.5rem; */
        padding-bottom: 5rem;
    }

    .blog-template-title h1 {
        font-size: 1.75rem;
        line-height: 2.2rem;
    }

    .blog-illustration img {
        border-radius: 1ch;
    }
}

/* 426–666px (large phones / small tablets) */
@media only screen and (min-width: 426px) and (max-width: 666px) {
    .blog-template-main {
        /* padding-left: 2rem;
        padding-right: 2rem; */
        padding-bottom: 6rem;
    }

    .blog-template-title h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .blog-illustration img {
        border-radius: 1ch;
    }
}

/* 667–768px (tablets) */
@media only screen and (min-width: 667px) and (max-width: 768px) {
    .blog-template-main {
        /* padding-left: 2rem;
        padding-right: 2rem; */
        padding-bottom: 6rem;
    }

    .blog-template-title h1 {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
}

/* 769–1024px (small laptops / landscape tablets) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .blog-template-main {
        /* padding-left: 3rem;
        padding-right: 3rem; */
        padding-bottom: 7rem;
    }

    .blog-template-title h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

/* 1025px to 1279px — standard laptop screens */
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .blog-template-main {
        /* padding-left: 10rem;
        padding-right: 10rem; */
        padding-bottom: 10rem;
    }

    .blog-template-title h1 {
        font-size: 2.75rem;
        line-height: 3.25rem;
    }
}

/* 1280px to 1439px — large laptops / small desktops */
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .blog-template-main {
        /* padding-left: 18rem;
        padding-right: 18rem; */
        padding-bottom: 14rem;
    }

    .blog-template-title h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

/* 1440px and above — XL screens */
@media only screen and (min-width: 1440px) {
    .blog-template-main {
        /* padding-left: 25rem;
        padding-right: 25rem; */
        padding-bottom: 15rem;
    }

    .blog-template-title h1 {
        font-size: 3.25rem;
        line-height: 3.75rem;
    }
}

