/**
 * Frontend Main Stylesheet
 *
 * This is the main entry point for all frontend styles.
 * All styles are compiled from LESS to CSS via webpack.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
/**
 * Variables
 *
 * Define all LESS variables for colors, typography, spacing, etc.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
/**
 * Base Styles
 *
 * Basic reset and foundational styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3436;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
  font-family: 'Fredoka', 'Fredoka One', cursive, sans-serif;
  font-weight: 400;
  line-height: 1.25;
}
h1,
h2 {
  font-weight: 500;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin: 0 0 1.5rem;
}
a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover,
a:focus {
  color: #ff3838;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}
code,
pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}
pre {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  overflow-x: auto;
}
/**
 * Header Component
 *
 * Site header styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.site-header {
  background: #004b80;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: white;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header .site-branding .site-title {
  margin: 0;
  font-size: 1.75rem;
  font-family: 'Fredoka', 'Fredoka One', cursive, sans-serif;
}
.site-header .site-branding .site-title a {
  color: #2d3436;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.site-header .site-branding .site-title a:hover {
  color: #ff6b6b;
}
.site-header .site-branding .site-description {
  display: none;
}
.site-header .custom-logo-link {
  display: block;
}
.site-header .custom-logo-link img {
  max-height: 50px;
  width: auto;
}
.site-header .main-navigation {
  margin: 0;
}
.site-header .site-branding .site-title a {
  color: white;
}
.site-header .main-navigation ul a:hover,
.site-header .main-navigation ul a:focus,
.site-header .main-navigation ul a {
  color: white;
}
/**
 * Navigation Component
 *
 * Menu and navigation styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.main-navigation .menu-toggle {
  display: none;
  background-color: #ff6b6b;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.15s ease-in-out;
}
.main-navigation .menu-toggle:hover {
  background-color: #ff3838;
}
@media (max-width: 768px) {
  .main-navigation .menu-toggle {
    display: block;
  }
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .main-navigation ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
.main-navigation ul li {
  margin: 0;
  position: relative;
}
.main-navigation ul a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #2d3436;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
  border-radius: 4px;
}
.main-navigation ul a:hover,
.main-navigation ul a:focus {
  color: #ff6b6b;
  text-decoration: none;
  background-color: rgba(255, 107, 107, 0.1);
}
.main-navigation ul .current-menu-item > a,
.main-navigation ul .current_page_item > a {
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}
@media (max-width: 768px) {
  .main-navigation.toggled ul {
    display: flex;
  }
}
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  top: 100%;
  left: 0;
  z-index: 100;
}
.main-navigation .sub-menu li {
  width: 100%;
}
.main-navigation .sub-menu a {
  padding: 1rem 1.5rem;
}
.main-navigation li:hover > .sub-menu {
  display: flex;
}
/**
 * Footer Component
 *
 * Site footer styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.site-footer {
  background: #004b80;
  padding: 3rem 0 2rem;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.site-footer .social-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-footer .social-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ff6b6b;
  color: white;
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  font-size: 18px;
}
.site-footer .social-menu a:hover {
  background-color: #4ecdc4;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.site-footer .social-menu a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.site-footer .social-menu a span {
  display: none;
}
.site-footer .site-info {
  text-align: center;
  font-size: 14px;
  color: white;
  opacity: 0.8;
}
.site-footer .site-info a {
  color: white;
  font-weight: 600;
  transition: color 0.15s ease-in-out;
}
.site-footer .site-info a:hover {
  color: #ff6b6b;
  text-decoration: none;
}
.site-footer .site-info .sep {
  margin: 0 0.5rem;
}
/**
 * Button Component
 *
 * Button styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #ff6b6b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  background-color: #ff3838;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button:active,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  transform: translateY(0);
}
.button.secondary,
button.secondary,
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
  background-color: #4ecdc4;
}
.button.secondary:hover,
button.secondary:hover,
input[type="button"].secondary:hover,
input[type="reset"].secondary:hover,
input[type="submit"].secondary:hover,
.button.secondary:focus,
button.secondary:focus,
input[type="button"].secondary:focus,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:focus {
  background-color: #33b5ac;
}
.button.outline,
button.outline,
input[type="button"].outline,
input[type="reset"].outline,
input[type="submit"].outline {
  background-color: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}
.button.outline:hover,
button.outline:hover,
input[type="button"].outline:hover,
input[type="reset"].outline:hover,
input[type="submit"].outline:hover,
.button.outline:focus,
button.outline:focus,
input[type="button"].outline:focus,
input[type="reset"].outline:focus,
input[type="submit"].outline:focus {
  background-color: #ff6b6b;
  color: #ffffff;
}
/**
 * Form Component
 *
 * Form and input styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #dfe6e9;
  border-radius: 4px;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  transition: border-color 0.15s ease-in-out;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group {
  margin-bottom: 1.5rem;
}
.comment-form .comment-form-comment {
  margin-bottom: 1.5rem;
}
.comment-form .form-submit {
  margin-bottom: 0;
}
/**
 * Layout Styles
 *
 * Main layout and structural styles.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-content {
  flex: 1;
  padding: 0 0;
}
.content-area {
  width: 100%;
}
.widget-area {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .widget-area {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .site-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
  }
  .no-sidebar .site-grid {
    grid-template-columns: 1fr;
  }
}
/**
 * Page Styles
 *
 * Styles specific to pages.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.page .entry-header {
  margin-bottom: 2rem;
}
.page .entry-title {
  margin-bottom: 1rem;
}
.page .entry-content {
  margin-bottom: 2rem;
}
/**
 * Front Page Styles
 *
 * Styles for the home page template.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.site-main.front-page {
  display: block;
  grid-template-columns: none;
  gap: 0;
}
.front-page .site-content {
  padding: 0;
}
@media (min-width: 768px) {
  .full-width-section {
    padding: 4rem 0;
  }
}
.full-width-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.front-page .hero-section {
  background: #004b80;
  text-align: center;
  padding: 4rem 0;
  color: white;
  background-image: url(../870087b9347e215c6df3.png);
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .front-page .hero-section {
    padding: 6rem 0;
  }
}
.front-page .hero-section.hero-no-image {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .front-page .hero-section.hero-no-image {
    padding: 8rem 0;
  }
}
.front-page .hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.front-page .hero-section .hero-image {
  max-width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .front-page .hero-section .hero-image {
    max-width: 250px;
    height: 250px;
  }
}
.front-page .hero-section .hero-title {
  font-size: 2.5rem;
  margin: 0;
  color: white;
}
@media (min-width: 768px) {
  .front-page .hero-section .hero-title {
    font-size: 3.5rem;
  }
}
.front-page .about-section {
  background-color: #ffffff;
}
.front-page .about-section .entry-content {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}
.front-page .about-section .entry-content h2 {
  color: #ff6b6b;
  margin-top: 3rem;
}
.front-page .about-section .entry-content h2:first-child {
  margin-top: 0;
}
.front-page .about-section .entry-content h3 {
  color: #4ecdc4;
  margin-top: 2rem;
}
.front-page .about-section .entry-content p {
  margin-bottom: 1.5rem;
}
.front-page .recent-posts-section {
  background-color: #00548f;
}
.front-page .recent-posts-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: white;
}
.front-page .recent-posts-section .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .front-page .recent-posts-section .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.front-page .recent-posts-section .post-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.front-page .recent-posts-section .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.front-page .recent-posts-section .post-card .post-card-image {
  overflow: hidden;
}
.front-page .recent-posts-section .post-card .post-card-image a {
  display: block;
}
.front-page .recent-posts-section .post-card .post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.front-page .recent-posts-section .post-card .post-card-image:hover img {
  transform: scale(1.05);
}
.front-page .recent-posts-section .post-card .post-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.front-page .recent-posts-section .post-card .post-card-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.front-page .recent-posts-section .post-card .post-card-title a {
  color: #2d3436;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.front-page .recent-posts-section .post-card .post-card-title a:hover {
  color: #ff6b6b;
}
.front-page .recent-posts-section .post-card .post-card-meta {
  font-size: 14px;
  color: #738489;
  margin-bottom: 1rem;
}
.front-page .recent-posts-section .post-card .post-card-excerpt {
  margin-bottom: 1.5rem;
  color: #444f52;
  flex: 1;
}
.front-page .recent-posts-section .post-card .post-card-link {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  align-self: flex-start;
}
.front-page .recent-posts-section .post-card .post-card-link:hover {
  color: #4ecdc4;
  transform: translateX(5px);
}
.front-page .recent-posts-section .view-all-posts {
  text-align: center;
}
.front-page .recent-posts-section .view-all-posts .button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ff6b6b;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}
.front-page .recent-posts-section .view-all-posts .button:hover {
  background-color: #ff3838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.front-page .cta-section {
  background: #004b80;
  text-align: center;
}
.front-page .cta-section .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.front-page .cta-section .cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}
.front-page .cta-section .cta-content p {
  font-size: 18px;
  color: white;
  margin-bottom: 2rem;
}
.front-page .cta-section .cta-content .cta-form {
  background-color: #ffffff;
  color: #2d3436;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .front-page .cta-section .cta-content .cta-form {
    padding: 3rem;
  }
}
.front-page .cta-section .cta-content .cta-form h2,
.front-page .cta-section .cta-content .cta-form h3,
.front-page .cta-section .cta-content .cta-form h4,
.front-page .cta-section .cta-content .cta-form h5,
.front-page .cta-section .cta-content .cta-form h6,
.front-page .cta-section .cta-content .cta-form label,
.front-page .cta-section .cta-content .cta-form p {
  color: #2d3436;
}
.front-page .cta-section .cta-content .cta-form .athena-form__label {
  text-align: left;
}
.front-page .cta-section .cta-content .cta-form a {
  color: #ff6b6b;
}
.front-page .cta-section .cta-content .cta-form input[type="text"],
.front-page .cta-section .cta-content .cta-form input[type="email"],
.front-page .cta-section .cta-content .cta-form input[type="url"],
.front-page .cta-section .cta-content .cta-form input[type="tel"],
.front-page .cta-section .cta-content .cta-form input[type="number"],
.front-page .cta-section .cta-content .cta-form input[type="search"],
.front-page .cta-section .cta-content .cta-form textarea,
.front-page .cta-section .cta-content .cta-form select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dfe6e9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  color: #2d3436;
  background-color: #ffffff;
  transition: border-color 0.15s ease-in-out;
}
.front-page .cta-section .cta-content .cta-form input[type="text"]:focus,
.front-page .cta-section .cta-content .cta-form input[type="email"]:focus,
.front-page .cta-section .cta-content .cta-form input[type="url"]:focus,
.front-page .cta-section .cta-content .cta-form input[type="tel"]:focus,
.front-page .cta-section .cta-content .cta-form input[type="number"]:focus,
.front-page .cta-section .cta-content .cta-form input[type="search"]:focus,
.front-page .cta-section .cta-content .cta-form textarea:focus,
.front-page .cta-section .cta-content .cta-form select:focus {
  outline: none;
  border-color: #ff6b6b;
}
.front-page .cta-section .cta-content .cta-form button,
.front-page .cta-section .cta-content .cta-form input[type="submit"] {
  padding: 1rem 2rem;
  background-color: #ff6b6b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.front-page .cta-section .cta-content .cta-form button:hover,
.front-page .cta-section .cta-content .cta-form input[type="submit"]:hover,
.front-page .cta-section .cta-content .cta-form button:focus,
.front-page .cta-section .cta-content .cta-form input[type="submit"]:focus {
  background-color: #ff3838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.front-page .cta-section .cta-content .cta-social .social-menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.front-page .cta-section .cta-content .cta-social .social-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ff6b6b;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.front-page .cta-section .cta-content .cta-social .social-menu a:hover {
  background-color: #4ecdc4;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.front-page .cta-section .cta-content .cta-social .social-menu a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.front-page .cta-section .cta-content .cta-social .social-menu a span {
  display: none;
}
.home .site-header {
  position: relative;
  z-index: 1000;
}
/**
 * Post Styles
 *
 * Styles for blog posts and archives.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.single-post .archive-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.single-post .hentry {
  background-color: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .single-post .hentry {
    padding: 3rem;
  }
}
.single-post .entry-header {
  margin-bottom: 2rem;
  text-align: center;
}
.single-post .entry-categories {
  margin-bottom: 1rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.single-post .entry-categories a {
  color: #ff6b6b;
  text-decoration: none;
}
.single-post .entry-categories a:hover,
.single-post .entry-categories a:focus {
  color: #ff3838;
  text-decoration: underline;
}
.single-post .entry-title {
  font-size: 2rem;
  color: #004b80;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .single-post .entry-title {
    font-size: 2.5rem;
  }
}
.single-post .entry-meta {
  color: #67777c;
  font-size: 14px;
  margin-bottom: 0;
}
.single-post .entry-meta .posted-on,
.single-post .entry-meta .byline {
  display: inline-block;
}
.single-post .entry-meta .byline {
  margin-left: 0.5rem;
}
.single-post .entry-meta .byline::before {
  content: '·';
  margin-right: 0.5rem;
  color: #aab5b8;
}
.single-post .entry-meta a {
  color: inherit;
  text-decoration: none;
}
.single-post .entry-meta a:hover,
.single-post .entry-meta a:focus {
  color: #ff6b6b;
  text-decoration: underline;
}
.single-post .post-thumbnail {
  margin: 0 calc(-1 * 2rem) 2rem;
  overflow: hidden;
  background-color: #eef2f3;
}
@media (min-width: 768px) {
  .single-post .post-thumbnail {
    margin-left: calc(-1 * 3rem);
    margin-right: calc(-1 * 3rem);
    margin-bottom: 3rem;
  }
}
.single-post .post-thumbnail img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.single-post .entry-content {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.single-post .entry-content > :first-child {
  margin-top: 0;
}
.single-post .entry-content > :last-child {
  margin-bottom: 0;
}
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  color: #004b80;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.single-post .entry-content p {
  margin-bottom: 1.5rem;
}
.single-post .entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #ff6b6b;
  background-color: #f7f9fa;
  font-style: italic;
  color: #444f52;
}
.single-post .entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post .entry-content img {
  border-radius: 8px;
  margin: 1.5rem 0;
}
.single-post .entry-content ul,
.single-post .entry-content ol {
  margin-bottom: 1.5rem;
}
.single-post .entry-content ul li,
.single-post .entry-content ol li {
  margin-bottom: 0.5rem;
}
.single-post .entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dfe6e9;
}
.single-post .entry-tags {
  font-size: 14px;
  color: #5b6a6e;
}
.single-post .entry-tags .tags-label {
  font-weight: 700;
  margin-right: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.single-post .entry-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin: 0 0.5rem 0.5rem 0;
  background-color: #eef2f3;
  color: #2d3436;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.single-post .entry-tags a:hover,
.single-post .entry-tags a:focus {
  background-color: #ff6b6b;
  color: #ffffff;
  text-decoration: none;
}
.single-post .post-navigation {
  margin-top: 3rem;
}
.single-post .post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .single-post .post-navigation .nav-links {
    grid-template-columns: 1fr 1fr;
  }
}
.single-post .post-navigation .nav-previous a,
.single-post .post-navigation .nav-next a {
  display: block;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.single-post .post-navigation .nav-previous a:hover,
.single-post .post-navigation .nav-next a:hover,
.single-post .post-navigation .nav-previous a:focus,
.single-post .post-navigation .nav-next a:focus {
  border-color: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.single-post .post-navigation .nav-previous .nav-subtitle,
.single-post .post-navigation .nav-next .nav-subtitle {
  display: block;
  font-size: 14px;
  color: #738489;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.single-post .post-navigation .nav-previous .nav-title,
.single-post .post-navigation .nav-next .nav-title {
  display: block;
  color: #2d3436;
  font-weight: 700;
  line-height: 1.3;
}
.single-post .post-navigation .nav-next {
  text-align: right;
}
.archive-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.archive-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #004b80;
}
.archive-header .archive-title {
  font-size: 2.5rem;
  color: #004b80;
  margin: 0 0 1rem;
}
.archive-header .archive-description {
  color: #505c60;
  font-size: 18px;
}
.archive-header .archive-description p:last-child {
  margin-bottom: 0;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.post-excerpt {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .post-excerpt {
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem;
  }
}
.post-excerpt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #ffd1d1;
}
.post-excerpt .post-excerpt-thumbnail {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (min-width: 576px) {
  .post-excerpt .post-excerpt-thumbnail {
    width: 160px;
    height: 120px;
    aspect-ratio: auto;
  }
}
@media (min-width: 992px) {
  .post-excerpt .post-excerpt-thumbnail {
    width: 200px;
    height: 140px;
  }
}
.post-excerpt .post-excerpt-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.post-excerpt .post-excerpt-thumbnail:hover img {
  transform: scale(1.05);
}
.post-excerpt .post-excerpt-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post-excerpt .entry-header {
  margin: 0;
}
.post-excerpt .entry-title {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.post-excerpt .entry-title a {
  color: #2d3436;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.post-excerpt .entry-title a:hover,
.post-excerpt .entry-title a:focus {
  color: #ff6b6b;
  text-decoration: none;
}
.post-excerpt .entry-meta {
  font-size: 14px;
  color: #738489;
  margin-bottom: 0.5rem;
}
.post-excerpt .entry-meta a {
  color: inherit;
  text-decoration: none;
}
.post-excerpt .entry-meta a:hover {
  color: #ff6b6b;
}
.post-excerpt .entry-meta .byline {
  margin-left: 0.5rem;
}
.post-excerpt .entry-summary {
  color: #444f52;
  margin-bottom: 0.5rem;
}
.post-excerpt .entry-summary p {
  margin: 0 0 1rem;
}
.post-excerpt .entry-footer {
  margin-top: auto;
}
.post-excerpt .read-more-link {
  display: inline-block;
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.post-excerpt .read-more-link:hover,
.post-excerpt .read-more-link:focus {
  color: #4ecdc4;
  transform: translateX(4px);
  text-decoration: none;
}
.posts-navigation,
.post-navigation {
  margin-top: 3rem;
}
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.posts-navigation .nav-previous a,
.post-navigation .nav-previous a,
.posts-navigation .nav-next a,
.post-navigation .nav-next a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
  color: #2d3436;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}
.posts-navigation .nav-previous a:hover,
.post-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover,
.post-navigation .nav-next a:hover,
.posts-navigation .nav-previous a:focus,
.post-navigation .nav-previous a:focus,
.posts-navigation .nav-next a:focus,
.post-navigation .nav-next a:focus {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
  color: #ffffff;
  text-decoration: none;
}
.widget-area .widget {
  background-color: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget-title {
  font-size: 1.25rem;
  color: #004b80;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #b3e0ff;
}
.widget-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-area ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eef2f3;
  font-size: 14px;
}
.widget-area ul li:last-child {
  border-bottom: none;
}
.widget-area ul li a {
  color: #2d3436;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease-in-out;
}
.widget-area ul li a:hover,
.widget-area ul li a:focus {
  color: #ff6b6b;
  text-decoration: none;
}
.widget-area ul li .post-date,
.widget-area ul li .count {
  display: block;
  font-size: 0.8125rem;
  color: #738489;
  font-weight: 400;
  margin-top: 2px;
}
.widget-area ul li .count {
  display: inline;
  margin-left: 0.5rem;
}
.widget-area .search-form {
  display: flex;
  gap: 0.5rem;
}
.widget-area .search-form .search-field {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 1rem;
  border: 1px solid #dfe6e9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}
.widget-area .search-form .search-field:focus {
  outline: none;
  border-color: #ff6b6b;
}
.widget-area .search-form .search-submit {
  padding: 0.5rem 1rem;
  background-color: #ff6b6b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.widget-area .search-form .search-submit:hover,
.widget-area .search-form .search-submit:focus {
  background-color: #ff3838;
}
/**
 * 404 Page Styles
 *
 * Goofy dragon-themed not-found page.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.error-404-section {
  padding: 3rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .error-404-section {
    padding: 0 0 5rem;
  }
}
.error-404-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .error-404-section .container {
    gap: 3rem;
  }
}
.dragon-stage {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.dragon-stage::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -8px;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
  filter: blur(4px);
}
.dragon-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.dragon-svg .dragon-wing {
  transform-origin: 220px 170px;
  animation: dragon-wing-flap 1.6s ease-in-out infinite;
}
.dragon-svg .dragon-fire {
  transform-origin: 360px 172px;
  animation: dragon-fire-flicker 0.5s steps(2, end) infinite;
}
.dragon-svg .dragon-pupil {
  animation: dragon-pupil-shift 4s ease-in-out infinite;
}
.dragon-svg .dragon-tail {
  transform-origin: 90px 215px;
  animation: dragon-tail-swish 3s ease-in-out infinite;
}
.dragon-svg .dragon-scrap {
  animation: dragon-scrap-bob 2.2s ease-in-out infinite;
  transform-origin: 271px 245px;
}
@keyframes dragon-wing-flap {
  0%,
  100% {
    transform: rotate(-2deg) scaleY(1);
  }
  50% {
    transform: rotate(6deg) scaleY(0.92);
  }
}
@keyframes dragon-fire-flicker {
  0% {
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.18) scaleY(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scaleX(0.92) scaleY(1.1);
    opacity: 1;
  }
}
@keyframes dragon-pupil-shift {
  0%,
  40%,
  100% {
    transform: translate(0, 0);
  }
  50%,
  70% {
    transform: translate(-3px, 1px);
  }
}
@keyframes dragon-tail-swish {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
@keyframes dragon-scrap-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}
.error-404-content {
  max-width: 640px;
}
.error-404-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 0.75rem;
  background-color: #ff6b6b;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.error-404-title {
  font-size: 2rem;
  color: #004b80;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .error-404-title {
    font-size: 3rem;
  }
}
.error-404-message {
  font-size: 18px;
  color: #505c60;
  margin: 0 auto 2rem;
  max-width: 520px;
}
.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.error-404-actions .button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  border: 2px solid transparent;
}
.error-404-actions .button-primary {
  background-color: #ff6b6b;
  color: #ffffff;
  border-color: #ff6b6b;
}
.error-404-actions .button-primary:hover,
.error-404-actions .button-primary:focus {
  background-color: #ff3838;
  border-color: #ff3838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.error-404-actions .button-ghost {
  background-color: transparent;
  color: #004b80;
  border-color: #004b80;
}
.error-404-actions .button-ghost:hover,
.error-404-actions .button-ghost:focus {
  background-color: #004b80;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.error-404-search {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.error-404-search .error-404-search-label {
  font-size: 14px;
  color: #67777c;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.error-404-search .search-form {
  display: flex;
  gap: 0.5rem;
}
.error-404-search .search-form .search-field {
  flex: 1;
  min-width: 0;
  padding: 1rem;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.15s ease-in-out;
}
.error-404-search .search-form .search-field:focus {
  outline: none;
  border-color: #ff6b6b;
}
.error-404-search .search-form .search-submit {
  padding: 1rem 1.5rem;
  background-color: #4ecdc4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.error-404-search .search-form .search-submit:hover,
.error-404-search .search-form .search-submit:focus {
  background-color: #35bdb3;
}
@media (prefers-reduced-motion: reduce) {
  .dragon-svg .dragon-wing,
  .dragon-svg .dragon-fire,
  .dragon-svg .dragon-pupil,
  .dragon-svg .dragon-tail,
  .dragon-svg .dragon-scrap {
    animation: none;
  }
}
/**
 * Utility Classes
 *
 * Helper classes for common needs.
 *
 * @package KeeksGeeks
 * @since 1.0.0
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #2d3436;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.alignleft {
  float: left;
  margin-right: 1.5rem;
}
.alignright {
  float: right;
  margin-left: 1.5rem;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

