html,
body {
max-width: 100%;
overflow-x: hidden; } body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; } #page { display: flex;
flex-direction: column;
flex-grow: 1; width: 100%; }
#primary { display: flex;
flex-direction: column;
flex-grow: 1; width: 100%; box-sizing: border-box;
}
#primary > #main,
#primary > .main-content { flex-grow: 1; } header {
background-color: #1d3557;
color: white;
text-align: center;
padding: 20px 0;
width: 100%;
box-sizing: border-box;
margin: 0;
flex-shrink: 0; }
header h1 {
font-family: 'Merriweather', serif;
margin: 0;
} nav.main-navigation {
display: flex;
justify-content: center;
background-color: #2a6f97;
padding: 10px;
width: 100%;
box-sizing: border-box;
} .main-navigation ul.primary-menu {
display: flex; justify-content: center;
list-style: none; margin: 0;
padding: 0;
} .main-navigation ul > li {
position: relative; margin: 0 5px; } .main-navigation ul > li > a {
color: white;
text-decoration: none;
padding: 8px 15px;
font-weight: bold;
display: block; border-radius: 4px;
transition: background-color 0.2s ease;
} .main-navigation ul > li > a:hover {
background-color: #1d3557; color: #f1c40f;
} .main-navigation ul ul.sub-menu {
display: none; position: absolute;
top: 100%; right: 0; background-color: #1d3557; list-style: none;
padding: 10px 0;
margin: 0;
min-width: 220px; box-shadow: 0 5px 10px rgba(0,0,0,0.3);
border-radius: 0 0 5px 5px;
z-index: 100;
} .main-navigation ul li:hover > ul.sub-menu {
display: block;
} .main-navigation ul ul.sub-menu li {
width: 100%;
margin: 0;
} .main-navigation ul ul.sub-menu li a {
color: white;
padding: 10px 20px;
display: block;
text-align: right; text-decoration: none;
transition: background-color 0.2s ease;
} .main-navigation ul ul.sub-menu li a:hover {
background-color: #2a6f97; } .single .reading-progress-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 8px;
background: rgba(221, 221, 221, 0.3);
z-index: 9999;
overflow: hidden;
}
.single .reading-progress-bar {
height: 100%;
width: 0%; background: linear-gradient(90deg, #2a6f97, #1d3557);
transition: width 0.15s ease-out;
position: relative;
box-shadow: 0 0 15px rgba(42, 111, 151, 0.7);
}
.single .reading-progress-bar::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)
);
animation: progressGlow 2s infinite linear; }
@keyframes progressGlow {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
} .single body > header { margin-top: 8px !important; } .main-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 20px 0;
box-sizing: border-box;
}
.book-summary {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 280px;
max-width: 90%;
margin: 15px;
padding: 20px;
box-sizing: border-box;
}
.book-summary img {
display: block;
width: 100%;
height: auto;
border-radius: 8px;
}
.book-summary h3 {
font-family: 'Merriweather', serif;
color: #333;
font-size: 1.2em;
margin: 10px 0;
}
.book-summary h3 a {
text-decoration: none;
color: inherit;
}
.book-summary h3 a:hover {
color: #2a6f97;
}
.book-summary p {
color: #555;
font-size: 0.9em;
}
.book-summary .rating {
margin-top: 10px;
color: #f1c40f;
} footer.site-footer {
background-color: #1d3557; color: #e0e0e0;
padding: 40px 20px;
margin-top: auto; text-align: center;
width: 100%;
box-sizing: border-box;
} .footer-content-container {
max-width: 1200px;
margin: 0 auto;
} .footer-nav ul {
display: flex;
justify-content: center; flex-wrap: wrap; list-style: none;
padding: 0;
margin: 0 0 30px 0; gap: 25px; }
.footer-nav a {
color: #ffffff;
text-decoration: none;
font-size: 1rem;
transition: color 0.2s ease;
}
.footer-nav a:hover {
text-decoration: underline;
} .footer-social {
margin-bottom: 30px; }
.footer-social a {
color: #ffffff;
text-decoration: none;
font-size: 1.5rem; margin: 0 15px; transition: color 0.2s ease, transform 0.2s ease;
display: inline-block; }
.footer-social a:hover {
color: #bdc3c7; transform: scale(1.1); } .footer-bottom-bar {
padding-top: 20px;
border-top: 1px solid #2a6f97; margin: 0;
}
.footer-bottom-bar p {
margin: 0;
color: #aaa; font-size: 0.9rem;
} .content-wrapper {
max-width: 960px;
margin: 30px auto;
padding: 0 20px;
box-sizing: border-box;
width: 100%;
}
#page > #primary {
margin-top: 30px;
margin-bottom: 30px;
} .sidebar {
width: 250px;
}
.sidebar h2 {
color: #1d3557;
border-bottom: 2px solid #2a6f97;
padding-bottom: 10px;
font-size: 1.2rem;
margin-top: 0;
margin-bottom: 15px;
text-align: center;
}
.sidebar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.sidebar ul li {
margin-bottom: 8px;
}
.sidebar ul li a {
text-decoration: none;
color: #333;
display: block;
padding: 8px 10px;
border-radius: 5px;
font-size: 0.95rem;
transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar ul li a:hover,
.sidebar ul li.current-cat > a
{
background-color: #eef5f9;
color: #1d3557;
} .single-post-content {
width: 100%;
background-color: #ffffff;
padding: 30px 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
margin: 0 auto;
max-width: 960px;
}
.single-post-content h1 {
font-family: 'Merriweather', serif;
font-size: 2.6em;
margin-top: 0;
margin-bottom: 15px;
color: #1d3557;
text-align: center;
line-height: 1.3;
word-wrap: break-word;
}
.post-meta {
text-align: center;
margin-bottom: 30px;
font-size: 0.9em;
color: #777;
line-height: 1.5;
}
.post-meta span {
margin: 0 10px;
display: inline-block;
line-height: 1.5;
}
.post-thumbnail {
display: block;
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 0 auto 30px auto;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.post-content {
font-size: 1.25em;
line-height: 1.8;
color: #333;
word-wrap: break-word;
}
.post-content p { margin-bottom: 1.5em; }
.post-content a {
color: #2a6f97;
text-decoration: underline;
word-break: break-all;
}
.post-content a:hover {
color: #1d3557;
text-decoration: none;
}
.post-content ul, .post-content ol {
margin-left: 1.5em;
margin-bottom: 1.5em;
padding-left: 1em;
}
.post-content li { margin-bottom: 0.5em; }
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
font-family: 'Merriweather', serif;
margin-top: 1.8em;
margin-bottom: 0.8em;
color: #1d3557;
line-height: 1.4;
}
.post-content h2 { font-size: 1.6em; }
.post-content h3 { font-size: 1.4em; }
.post-content h4 { font-size: 1.2em; } .single-post-content blockquote {
background-color: #eef5f9;
border-left: 5px solid #2a6f97;
padding: 20px 30px;
margin: 30px 0;
font-style: italic;
color: #333;
font-size: 1.1em;
line-height: 1.7;
border-radius: 0 5px 5px 0;
position: relative;
overflow: hidden;
}
.single-post-content blockquote::before {
content: "“";
font-size: 3.5em;
position: absolute;
top: 0px;
left: 5px;
color: #a8d0e6;
line-height: 1;
opacity: 0.8;
z-index: 0;
}
.single-post-content blockquote::after {
content: "";
}
.single-post-content blockquote p {
margin-bottom: 0.5em;
position: relative;
z-index: 1;
}
.single-post-content blockquote cite {
display: block;
text-align: right;
margin-top: 15px;
color: #555;
font-size: 0.9em;
font-style: normal;
position: relative;
z-index: 1;
}
.read-more {
background-color: #2a6f97;
color: white !important;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
margin-top: 10px;
display: inline-block;
transition: background-color 0.2s ease;
}
.read-more:hover {
background-color: #1d3557;
color: white !important;
} .comments-section {
margin-top: 50px;
padding: 30px;
background-color: #ffffff;
border-radius: 8px;
max-width: 960px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
box-sizing: border-box;
width: 100%;
}
.comments-section h2.comments-title, .comments-section h3.comment-reply-title {
font-family: 'Merriweather', serif;
color: #1d3557;
margin-top: 0;
margin-bottom: 25px;
text-align: center;
font-size: 1.8em;
}
.comments-section .comment-list { list-style: none; padding: 0; margin: 0; }
.comments-section .comment { border-bottom: 1px solid #eee; padding: 20px 0; }
.comments-section .comment:last-child { border-bottom: none; padding-bottom: 0; }
.comments-section .children { list-style: none; padding-left: 30px; margin-left: 15px; border-left: 1px dashed #eee; margin-top: 15px; }
.comments-section .comment-author { margin-bottom: 5px; position: relative; min-height: 50px; padding-left: 65px; }
.comments-section .comment-author .fn { font-weight: bold; color: #333; display: block; }
.comments-section .comment-author .says { display: none; }
.comments-section .comment-author img.avatar { border-radius: 50%; position: absolute; left: 0; top: 0; width: 50px; height: 50px; }
.comments-section .comment-meta { font-size: 0.85em; color: #777; margin-bottom: 10px; display: block; padding-left: 65px; }
.comments-section .comment-meta a { color: #777; text-decoration: none; }
.comments-section .comment-meta a:hover { text-decoration: underline; }
.comments-section .comment-content { padding-top: 5px; padding-left: 65px; word-wrap: break-word; }
.comments-section .comment-content p { font-size: 1em; line-height: 1.6; margin-bottom: 1em; }
.comments-section .reply { font-size: 0.9em; margin-top: 10px; padding-left: 65px; text-align: right; }
.comments-section .reply a { color: #2a6f97; text-decoration: none; border: 1px solid #ddd; padding: 3px 8px; border-radius: 3px; transition: background-color 0.2s ease, border-color 0.2s ease; display: inline-block; }
.comments-section .reply a:hover { text-decoration: none; background-color: #eef5f9; border-color: #ccc; }
.comment-form { margin-top: 30px; }
.comment-form label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; font-size: 0.9em; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px; font-size: 1em; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; margin-bottom: 15px; background-color: #fdfdfd; }
.comment-form input[type="text"]:focus, .comment-form input[type="email"]:focus, .comment-form input[type="url"]:focus, .comment-form textarea:focus { border-color: #2a6f97; box-shadow: 0 0 5px rgba(42, 111, 151, 0.2); outline: none; }
.comment-form textarea { min-height: 120px; }
.comment-form .comment-notes, .comment-form .logged-in-as, .comment-form .comment-form-cookies-consent { font-size: 0.85em; color: #777; margin-bottom: 15px; line-height: 1.5; }
.comment-form .comment-form-cookies-consent input[type="checkbox"]{ margin-right: 5px; vertical-align: middle; }
.comment-form .comment-form-cookies-consent label { display: inline-block; font-weight: normal; margin-left: 0; font-size: 1em; vertical-align: middle; }
.comment-form .required { color: red; margin-left: 2px; font-weight: bold; }
.comment-form input[type="submit"] { background-color: #1d3557; color: #fff; border: none; padding: 12px 25px; font-size: 1em; font-weight: bold; cursor: pointer; border-radius: 4px; transition: background-color 0.2s ease, transform 0.1s ease; float: right; }
.comment-form input[type="submit"]:hover { background-color: #2a6f97; }
.comment-form input[type="submit"]:active { transform: scale(0.98); }
.comment-form::after { content: ""; display: table; clear: both; }
.no-comments { text-align: center; color: #777; font-style: italic; margin-top: 20px; padding: 20px; background-color: #f9f9f9; border-radius: 5px; } .container { max-width: 1100px; margin: 30px auto; padding: 20px; box-sizing: border-box; width: 100%; }
.page-content { background-color: #fff; padding: 30px 40px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.grid-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; width: 100%; } .pagination { text-align: center; margin: 40px auto 20px auto; clear: both; padding: 20px 0; width: 100%; box-sizing: border-box; margin-top: auto; flex-shrink: 0; }
.pagination .nav-links { display: inline-flex; align-items: center; gap: 8px; }
.pagination a, .pagination span { padding: 10px 18px; text-decoration: none; color: #2a6f97; background-color: #fff; border: 1px solid #ddd; border-radius: 8px; transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; font-weight: bold; font-size: 1rem; line-height: 1; }
.pagination a:hover { background-color: #eef5f9; color: #1d3557; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pagination .current { background-color: #2a6f97; color: #fff; border-color: #2a6f97; box-shadow: 0 4px 8px rgba(42, 111, 151, 0.3); cursor: default; }
.pagination .dots { border: none; background: none; padding: 8px 5px; color: #777; box-shadow: none; }
.pagination .prev, .pagination .next { font-weight: normal; } .author .main-content { width: 100%; margin-right: 0; }
.author .content-wrapper { max-width: 1100px; }
.author .box { background-color: #f4f4f4; box-shadow: none; }
.archive-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07); margin-bottom: 30px; }
.archive-title { font-size: 2em; color: #1d3557; margin: 0; }
#view-switcher button { padding: 10px 20px; font-size: 0.9em; font-weight: bold; text-transform: uppercase; background-color: #fff; border: 1px solid #ddd; cursor: pointer; color: #555; transition: background-color 0.2s; border-radius: 5px; }
#view-switcher button.active { background-color: #2a6f97; color: #fff; border-color: #2a6f97; }
#view-switcher button:not(.active):hover { background-color: #f0f0f0; }
.author-bio-box {
background-color: #ffffff;
padding: 25px;
margin-bottom: 30px; border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
display: flex;
align-items: center; gap: 25px; }
.author-bio-box .author-avatar img {
border-radius: 50%; display: block;
}
.author-bio-box .author-details {
flex: 1; }
.author-bio-box .author-name {
margin-top: 0;
margin-bottom: 10px;
font-size: 1.8em;
color: #1d3557; font-family: 'Merriweather', serif;
}
.author-bio-box .author-description p {
margin-top: 0;
margin-bottom: 10px; font-size: 1.05em;
line-height: 1.7;
color: #555;
} #author-posts-container.grid-view { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
#author-posts-container.grid-view .book-summary { text-align: center; background: #fff; margin: 0; }
#author-posts-container.grid-view .book-summary-image img { width: 100%; max-width: 200px; height: auto; margin: 0 auto 15px auto; } #author-posts-container.list-view { display: block; }
#author-posts-container.list-view .book-summary {
display: flex;
flex-direction: row; align-items: center; text-align: right;
width: 100%;
margin: 0 0 25px 0;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
#author-posts-container.list-view .book-summary:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#author-posts-container.list-view .book-summary-image {
flex-shrink: 0;
width: 250px; margin-left: 25px; }
#author-posts-container.list-view .book-summary-image img {
border-radius: 5px;
width: 100%;
height: auto;
}
#author-posts-container.list-view .book-summary-content {
display: flex;
flex-direction: column;
flex-grow: 1;
}
#author-posts-container.list-view .book-summary-content h3 { margin-top: 0; font-size: 1.5em; }
#author-posts-container.list-view .book-summary-content p { flex-grow: 1; font-size: 1em; color: #555; }
#author-posts-container.list-view .book-summary-content .read-more { align-self: flex-start; margin-top: 15px; } .post-author-box {
background-color: #f9f9f9;
padding: 25px;
margin: 40px auto 0; border-radius: 8px;
border: 1px solid #eee;
display: flex;
align-items: flex-start;
gap: 25px;
max-width: 960px; box-sizing: border-box;
}
.post-author-box .author-avatar img {
border-radius: 50%;
display: block;
}
.post-author-box .author-details {
flex: 1;
}
.post-author-box .author-name {
margin-top: 0;
margin-bottom: 8px;
font-size: 1.4em;
font-family: 'Merriweather', serif;
}
.post-author-box .author-name a {
color: #1d3557;
text-decoration: none;
transition: color 0.2s ease;
}
.post-author-box .author-name a:hover {
color: #2a6f97;
}
.post-author-box .author-description p {
margin: 0;
font-size: 0.95em;
line-height: 1.7;
color: #555;
}  @media (max-width: 1024px) { .content-wrapper { padding: 0 15px; }
.grid-container, #author-posts-container.grid-view { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.single-post-content { padding: 25px 20px; }
.single-post-content h1 { font-size: 2.2em; }
.post-content { font-size: 1.15em; }
}
@media (max-width: 767px) { .content-wrapper { padding: 0 10px; margin-top: 15px; margin-bottom: 15px; }
#page > #primary { margin-top: 15px; margin-bottom: 15px; }
.grid-container, #author-posts-container.grid-view { grid-template-columns: 1fr; gap: 15px; }
.book-summary { width: 100%; max-width: 100%; margin: 10px 0; }
.single-post-content { padding: 15px 10px; border-radius: 5px; }
.single-post-content h1 { font-size: 1.7em; line-height: 1.4; }
.post-content { font-size: 1.05em; line-height: 1.7; }
nav.main-navigation { flex-wrap: wrap; padding: 8px 5px; }
.main-navigation ul > li { margin: 2px 0; }
.main-navigation ul > li > a { padding: 8px 10px; font-size: 0.9em; }
.pagination a, .pagination span { padding: 6px 10px; font-size: 0.9em; margin: 2px 2px; }
.archive-header { flex-direction: column; align-items: flex-start; gap: 15px; }
.author-bio-box, .post-author-box { flex-direction: column; text-align: center;
padding: 20px;
}
.author-bio-box .author-name {
font-size: 1.5em;
}
#author-posts-container.list-view .book-summary { flex-direction: column; text-align: center; }
#author-posts-container.list-view .book-summary-image { margin: 0 auto 15px auto; width: 200px; }
#author-posts-container.list-view .book-summary-content .read-more { align-self: center; }
.footer-widgets-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 480px) {
.footer-widgets-container { grid-template-columns: 1fr; }
}
} @media print {
body { background-color: #fff; color: #000; font-size: 12pt; display: block; min-height: auto; }
}