/*
Theme Name: My Custom Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A basic custom theme for WordPress.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/
:root {
    --ivory: #fdfdf8;
    --charcoal: #2a2a2a;
    --soft-black: #000;
    --accent: #414141;
    --border: #d4d4d0;
    --hover: #414141;
}

.logged-in nav {top: 34px;}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
	.togglebutton {display:none;}	

body {
    font-family: "Martel", serif;
    background-color: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-logo {margin-bottom: 10px;}
.profileImage img {display:block; width: 85%;}
.follow-btn__1 {text-decoration: none; color: #514848; font-size:16px;}
.work-filters .filter-btn {text-transform:lowercase;}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: block;
    justify-content: space-between;
    align-items: center;
}
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#loadMore {text-decoration:none; color:#000;}
.logo {
    font-family: "Martel", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--soft-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--hover);

}
.about-content.about-text {
/* 	height: calc(100vh - 148px);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5; */
}
/* Chrome, Edge, Safari */
.about-content.about-text::-webkit-scrollbar {
    width: 6px;
}

.about-content.about-text::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.about-content.about-text::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.about-content.about-text::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 16px;
    color: #514848;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--hover);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--hover);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active::after {
    width: 100%;
    background-color: var(--soft-black);
}

.follow-btn {
    font-size: 0.9rem;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--charcoal);
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background-color: var(--soft-black);
    color: var(--ivory);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--charcoal);
    transition: all 0.3s ease;
}

/* Hero Section - Homepage */
.hero {
    margin-top: 100px;
    padding: 3rem 3rem 0 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: "Martel", serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--soft-black);
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #000;
    animation: fadeIn 1s ease-out 0.7s both;
}

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.9s both;
}

.cta-link:hover {
    color: var(--hover);
    border-color: var(--hover);
    padding-bottom: 4px;
}

/* Latest Work Section */
.latest-work {
    animation: fadeIn 1s ease-out 1.1s both;
}

.section-header {
    font-family: "Martel", serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--soft-black);
    letter-spacing: 0.02em;
}

.work-item {
margin-bottom: 10px;
    padding-bottom: 10px;
    transition: transform 0.3s ease;
}

.work-item:last-child {
    border-bottom: none;
}

.work-item:hover {
    transform: translateX(8px);
}
.work-title a {text-decoration:none; color:#000; }
.work-title {
    font-family: "Martel", serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--soft-black);
}

.work-item p  {
    font-size: 12px;
    color: #414141;
    margin-bottom: 5px;
}

.work-award {
    font-size: 0.9rem;
    color: var(--hover);
    margin-top: 0.5rem;
}


.work-clients {
    font-size: 0.9rem;
    color: var(--accent);
    line-height: 1.8;
    margin-top: 0.5rem;
}

.view-all {
    display: inline-block;
    margin-top: 0;
    font-size: 16px;
    color: var(--soft-black);
    text-decoration: none;
    border-bottom: 1px solid var(--soft-black);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--hover);
    border-color: var(--hover);
}

/* Contact Section */
.contact-section {
    max-width: 1400px;
    margin: 5rem auto 4rem;
    padding: 0 3rem;
    animation: fadeIn 1s ease-out 1.3s both;
}

.aboutTopinner {
/* 	height: calc(100vh - 310px);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5; */
}
/* Chrome, Edge, Safari */
.aboutTopinner::-webkit-scrollbar {
    width: 6px;
}

.aboutTopinner::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.aboutTopinner::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.aboutTopinner::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}
.contact-content {
	width: 100%;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-title {
    font-family: "Martel", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--soft-black);
}

.contact-email {
    font-size: 16px;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--hover);
}

.contact-arrow {
    display: block;
    margin-left: 0rem;
    transition: transform 0.3s ease;
}

.contact-email:hover .contact-arrow {
    transform: translateX(5px);
}

/* About Page */
.about-page {
    margin-top: 100px;
    padding: 3rem 3rem 0 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.about-content {
    animation: fadeIn 1s ease-out 0.3s both;
    padding-bottom: 4rem;
}
.book-card {display: flex; column-gap: 30px; align-items: start;}
.book-section {display: flex; column-gap: 60px; align-items: start;}
.latest-section {display: flex; column-gap: 60px; align-items: start;}
.about-sidebar {display: flex; gap: 20px; flex-direction: column; justify-content: space-between;}
.about-text p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
    color: #000;
}
.about-text h3 {margin-bottom: 15px;}

.about-sidebar {
    animation: fadeIn 1s ease-out 0.5s both;
}

.sidebar-title {
    font-family: "Martel", serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--soft-black);
}

.book-card {
    margin-bottom: 3rem;
}

.book-cover {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.book-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.buy-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--soft-black);
    text-decoration: none;
    border-bottom: 1px solid var(--soft-black);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.buy-link:hover {
    color: var(--hover);
    border-color: var(--hover);
}

.latest-section,
.awards-section {
    margin-bottom: 3rem;
}

.latest-item {
    margin-bottom: 1rem;
}

.latest-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.awards-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.award-img {
    width: 100%;
    height: auto;
}

/* Work Page */
.work-page {
    display: flex;
    column-gap: 90px;
    margin-top: 100px;
    padding: 3rem 3rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.work-header {
    width: 300px;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.page-title {
    font-family: "Martel", serif;
    text-transform: lowercase;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--soft-black);
}

.work-filters {
	width: 160px;
    display: block;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: block;
    font-family: "Martel", serif;
    font-size: 14px;
	text-align: left;
    color: #514848;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.work-filters button a {
	text-decoration: none;
    color: #000;
  }
.filter-btn:hover,
.filter-btn.active {
    color: var(--soft-black);
    border-bottom-color: var(--soft-black);
}

.work-grid {
    margin-top:50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.work-card {
    padding: 1rem;
    border: 0px solid var(--border);
    transition: all 0.3s ease;
}

.work-card:hover {
/*    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);*/
}

.work-card a {
    text-decoration: none;
    color: inherit;
}

.work-card-title {
    font-family: "Martel", serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--soft-black);
}

.work-card p {
    font-size: 12px;
    color: #414141;
    margin-bottom: 0.5rem;
}

.work-card-award {
    font-size: 0.85rem;
    color:#414141;
    margin-top: 0.5rem;
}

.work-card-description,
.work-card-clients {
    font-size: 0.9rem;
    color: #414141;
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* Work Individual Page */
.work-individual {
    margin-top: 100px;
    padding:2rem 3rem 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.work-back {
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.back-link {
    font-size: 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--hover);
}

.work-individual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.work-individual-title {
    font-family: "Martel", serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--soft-black);
}

.work-individual-subtitle p {
    font-size: 14px;
    color: #414141;
    margin-bottom: 0.5rem;

}

.work-individual-award {
    font-size: 0.95rem;
    color: #414141;
    margin-bottom: 2rem;
}

.work-individual-body {
    margin-bottom: 2rem;
	margin-top: 20px;
}

.work-individual-body p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom:18px;
    color: #000;
}

.watch-link {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--soft-black);
    text-decoration: none;
    border-bottom: 1px solid var(--soft-black);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.watch-link:hover {
    color: var(--hover);
    border-color: var(--hover);
}

.work-individual-gallery {
    position: relative;
}

.gallery-main {
    margin-bottom: 2rem;
}

.gallery-main img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.single-work .gallery-main img {
    width: auto;
    height: 400px;
    margin: 0 auto;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.gallery-prev,
.gallery-next {
    font-family: "Martel", serif;
    font-size: 1.2rem;
    background: none;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--soft-black);
    color: var(--ivory);
}

/* Awards Page */
.awards-page {
    margin-top: 100px;
    padding: 3rem 3rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.awards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.awards-content {
    animation: fadeIn 1s ease-out 0.3s both;
}

.awards-intro p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 2rem;
    color: #000;
}

.award-item {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;

}

.award-item:last-child {
    border-bottom: none;
}

.award-name {
    font-family: "Martel", serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--soft-black);
}

.award-description {
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.awards-images {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.award-image {
    width: calc(50% - 10px);
    height: auto;
    object-fit: contain;
}

/* Blogs Page */
.blogs-page {
    margin-top: 100px;
    padding: 3rem 3rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-container {
    animation: fadeIn 1s ease-out 0.3s both;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-title a {text-decoration: none; color: #000;}

.blog-title {
    font-family: "Martel", serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--soft-black);
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #414141;
}

.blog-date {
    font-size: 0.85rem;
    color: #414141;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.pagination-link {
    font-size: 0.95rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pagination-link:hover {
    color: var(--hover);
}

/* Connect Page */
.connect-page {
    margin-top: 100px;
    padding: 4rem 3rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.connect-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000;
}
.contact-content {
	position: absolute;
    bottom: 0;
    background-color: var(--ivory);
}
.latest-work {height: calc(100vh - 148px);}

.connect-instruction {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.connect-form-container {
    animation: fadeIn 1s ease-out 0.5s both;
}

.connect-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	    padding: 10px 1rem;
    width: 100%;
    font-family: "Martel", serif;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: var(--ivory);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--charcoal);
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.submit-btn {
    font-family: "Martel", serif;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background-color: var(--soft-black);
    color: var(--ivory);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--hover);
}

.wpcf7-submit {
    font-family: "Martel", serif;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background-color: var(--soft-black);
    color: var(--ivory);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wpcf7-submit:hover {
    background-color: var(--hover);
}

.connect-info {


}

.social-links {
    display: block;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: block;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--hover);
}

.connect-email {
    text-decoration: underline;
    font-size: 1rem;
    color: #000;
    margin-bottom: 40px;
}

.connect-next {
    margin-top: 5rem;
    text-align: right;
}

.next-link {
    font-size: 0.95rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.next-link:hover {
    color: var(--hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 4rem 2rem 2rem;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .contact-section {
        padding: 0 2rem;
    }

    .about-container,
    .awards-container,
    .connect-container {
        gap: 3rem;
    }

    .work-grid,
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .work-individual-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
.blog-card {margin-bottom: 0px;}
.blog-excerpt {font-size: 12px;}	
.blogs-page {margin-top: 70px;}
.page-title {margin-bottom: 1rem;}
.blog-title {font-size: 16px; line-height: 23px;}
.nav-links {gap: 1.3rem;}
.awards-page {margin-top: 75px;}	
.about-content {padding-bottom: 1rem;}
.awards-page {padding: 1rem 1rem 1rem;}
.about-page {padding: 1rem 1rem 0 1rem;  margin-top: 80px;}
.book-section { display: block;}
.latest-section {display: block;}
.book-card {display: block;}
.work-page {padding: 1rem 1rem 1rem; display: block; margin-top: 70px;}
.work-card, .blog-card {padding: 0!important;}
.work-grid {margin-top: 30px!important;}
.work-back {margin-bottom: 1rem;}
.work-individual {padding: 0rem 1rem 3rem!important;}
.blogs-page {padding: 1rem 1rem 1rem;}
.connect-page {padding: 1rem 1rem 1rem;}
.work-header {width: 100%; margin-bottom: 1rem;}
.work-filters {width: 100%!important;}	
	
.work-filters{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.work-filters::-webkit-scrollbar{
    display: none; /* hide scrollbar */
}

.filter-btn{
    flex: 0 0 auto;
    white-space: nowrap;
}	
	

    .follow-btn__1 {display: none;}
    .nav-links,
    .follow-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 1.2rem 1.5rem;
    }

    .hero {
        margin-top: 80px;
        padding: 3rem 1.5rem 2rem;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header,
    .page-title {
        font-size: 22px;
    }

    .work-title,
    .work-card-title,
    .work-individual-title {
        font-size: 16px;
    }

    .contact-section {
        padding: 0 1.5rem;
        margin: 4rem auto 3rem;
    }

	.section-header {
		margin-bottom: 15px;}
	
    .contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-email {
        font-size: 1rem;
    }

    .about-container,
    .awards-container,
    .work-individual-container,
    .connect-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-filters {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .awards-images {
        flex-direction: row;
        gap: 1rem;
    }

    .award-image {
        width: 48%;
    }
    .nav-container {
        padding: 1rem 1rem;
        display: flex;
    }
    .nav-logo {margin-bottom: 0;}
.contact-content {
	margin-top: 30px;
    position: static;
    background: none;
}
	.latest-work {
    height: auto;
}
	.connect-page {margin-top: 70px;}
.aboutTopinner {
	height: auto;
    overflow-y: scroll;
}
	.about-content.about-text {
		height: auto;}
	.profileImage img { width: 100%;}
.fullAuthorBio .bioContent {
    max-height: 207px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
	margin-bottom:15px;
}
	.togglebutton {display:block;}	
.fullAuthorBio.expanded .bioContent {
    max-height:2000px;
}
	.fullAuthorBio.expanded .togglebutton {display:none;}

}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1rem;
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 1rem 1rem 0 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .work-item,
    .award-item {
        margin-bottom: 0rem;
        padding-bottom: 1rem;
    }

    .contact-section {
        margin: 3rem auto 2rem;
    }

    .work-card,
    .blog-card {
        padding: 1.5rem;
    }

    .page-title {
        font-size:22px;
    }

    .work-individual {
        padding: 2rem 1rem 3rem;
    }

    .work-individual-title {
        font-size: 1.8rem;
    }

    .awards-images {
        flex-direction: column;
    }

    .award-image {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
