.new-home .book-banner {
    margin: 40px 0;
}

.new-home .book-banner-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fce89c;
    padding: 25px 80px;
}

.new-home .book-banner-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.new-home .book-banner-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.new-home .book-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.new-home .book-banner-content h1 {
    margin: 0 0 20px;
    font-size: 42px;
	color: #000;
    line-height: 1.1;
    font-weight: 700;
}

.new-home .book-banner-content p {
    margin: 0 0 30px;
    font-size: 22px;
    line-height: 1.5;
}

.new-home .banner-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
	    font-family: 'futura-pt', TrebuchetMS, sans-serif;
}

.new-home .banner-btn:hover {
    background: #000;
    color: #fff;
}

/* about section */
.new-home .about-author {
    padding: 60px 0;
}

.new-home .about-author-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.new-home .about-author-content {
    flex: 1;
}

.new-home .about-author-image {
    flex: 0 0 340px;
    max-width: 340px;
}

.new-home .about-author-image img {
    width: 100%;
    display: block;
    height: auto;
}

.new-home .about-author-content h2 {
    margin: 0 0 25px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
	color: #4c69ad;
}

.new-home .about-author-content p {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.7;
}

.new-home .solid-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #4c69ad;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
	    font-family: 'futura-pt', TrebuchetMS, sans-serif;
}

.new-home .solid-btn:hover {
    opacity: 0.85;
}
/* about section */

/* books section */
.new-home .books-section {
    margin: 50px 0;
}

.new-home .books-section-inner {
    background: #dbe1ee;
    padding: 30px 20px;
}

.new-home .books-section .section-title {
    margin: 0 0 35px;
    color: #4c69ad;
    font-size: 42px;
    line-height: 1.1;
    text-align: center;
    font-weight: 700;
}

.new-home .books-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.new-home .book-item img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}
/* books section */

/* events  section */
.new-home .articles-events {
    margin: 60px 0;
}

.new-home .articles-events .section-title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

.new-home .articles-events-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.new-home .articles-image,
.new-home .articles-content {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
}

.new-home .articles-image img {
    width: 100%;
    display: block;
    height: auto;
}

.new-home .articles-content h3 {
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.new-home .articles-content p {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.7;
}

.new-home .blue-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #4c69ad;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.new-home .blue-btn:hover {
    opacity: 0.9;
}
/* events  section */

/* instagram   section */
.new-home .instagram-section {
    margin: 60px 0;
}

.new-home .instagram-section .section-title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

.new-home .instagram-feed {
    text-align: center;
}
/* Instagram   section */

/* updated footer */
.site-footer {
    padding: 30px 0;
}

.site-footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p {
    margin: 0;
}

.site-footer .footer-instagram {
    color: #4c69ad;
    font-size: 28px;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.site-footer .footer-instagram:hover {
    opacity: 0.8;
}
/* updated footer */


/* responsive css */
@media (max-width: 991px) {
    .new-home .books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 767px) {

    .new-home .book-banner-inner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .new-home .book-banner-image,
    .new-home .book-banner-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .new-home .book-banner-content h1 {
        font-size: 32px;
    }

    .new-home .book-banner-content p {
        font-size: 18px;
    }
	
	    .new-home .about-author-inner {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .new-home .about-author-image {
			flex: 0 0 auto;
			max-width: 280px;
		}

		.new-home .about-author-content h2 {
			font-size: 24px;
		}

		.new-home .about-author-content p {
			font-size: 18px;
		}
		
	 .new-home .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .new-home .books-section .section-title {
        font-size: 32px;
    }	
	
	.new-home .articles-events-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .new-home .articles-image,
    .new-home .articles-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .new-home .articles-events .section-title {
        font-size: 32px;
    }

    .new-home .articles-content h3 {
        font-size: 24px;
    }

    .new-home .articles-content p {
        font-size: 18px;
    }
	
	.new-home .instagram-section .section-title {
        font-size: 32px;
    }
	
	/*.site-footer .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }*/

}

@media (max-width: 480px) {
    .new-home .books-grid {
        grid-template-columns: 1fr;
    }
}