/*
Theme Name: Riad Kilani's Portfolio Theme
Theme URI: https://riadkilani.com/
Author: Riad Kilani
Author URI: https://riadkilani.com/
Description: Custom theme based on Riad Kilani's portfolio style.
Version: 1.0
License: MIT
Text Domain: yourtheme
*/
@font-face {
  font-family: "TrajanProBold";
  src: url("../assets/fonts/trajanpro-bold-webfont.eot");
  src: url("../assets/fonts/trajanpro-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/trajanpro-bold-webfont.woff") format("woff"), url("../assets/fonts/trajanpro-bold-webfont.ttf") format("truetype"), url("../assets/fonts/trajanpro-bold-webfont.svg#TrajanProBold") format("svg");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Inter", sans-serif;
  color: #333 !important;
  background: url(../assets/images/bodyBG.gif) repeat center top !important;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.blog-snippet h2,
.blog-full h2 {
  font-family: "TrajanProBold", serif;
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
  margin-top: 0;
}
.blog-snippet h2 a,
.blog-full h2 a {
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.blog-snippet h2 a:hover,
.blog-full h2 a:hover {
  color: #2b72c9;
}

h2.wp-block-heading {
  margin-top: 30px;
}

.container.blog-content h2 {
  margin-bottom: 20px;
}

.site-header .container {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.site-header .container .site-branding a {
  display: block;
  width: 400px;
  height: 77px;
  background: url(../assets/images/riad-kilani-logo.png) no-repeat center center;
  background-size: contain;
  overflow: hidden;
  text-indent: -1000px;
}
.site-header .container .site-branding a img {
  width: 100%;
  height: auto;
  max-width: 400px;
}
.site-header .container .main-navigation ul.main-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.site-header .container .main-navigation ul.main-nav li {
  margin: 0;
}
.site-header .container .main-navigation ul.main-nav li a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 15px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .container .main-navigation ul.main-nav li a:hover {
  background-color: rgba(41, 101, 170, 0.1);
  color: #2b72c9;
}
.site-header .container .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.site-header .container .menu-toggle:hover {
  background-color: rgba(41, 101, 170, 0.1);
}
.site-header .container .menu-toggle:focus {
  outline: 2px solid #2b72c9;
  outline-offset: 2px;
}
.site-header .container .menu-toggle .hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2965aa;
  margin: 2px 0;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .container .menu-toggle.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(6px, 6px);
}
.site-header .container .menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .container .menu-toggle.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

.featured-image {
  margin: 20px 0;
  max-width: 100%;
}
.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.featured-image-right {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 300px;
}
.featured-image-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.featured-image-right img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.clearboth {
  clear: both;
}

.site-wrapper {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .site-wrapper {
    padding: 0;
    overflow-x: hidden;
  }
}
@media (max-width: 600px) {
  .site-wrapper {
    padding: 0;
    overflow-x: hidden;
  }
}

.site-header {
  background: #333;
  position: relative;
  z-index: 100;
}
.site-header .container {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.site-header .container .site-branding a {
  display: block;
  width: 400px;
  height: 77px;
  overflow: hidden;
  text-indent: -1000px;
}
.site-header .container .site-branding a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
.site-header .container .main-navigation ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.site-header .container .main-navigation ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 4px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.site-header .container .main-navigation ul li a:hover {
  background: #555;
}
.site-header .container .main-navigation ul li a.active, .site-header .container .main-navigation ul li a.current-menu-item {
  background: #2b72c9;
}
.site-header .menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #555;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 100;
}
.site-header .menu-toggle:hover {
  background: #666;
}
.site-header .menu-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site-header .menu-toggle .hamburger-line:nth-child(1) {
  margin-top: 8px;
}
.site-header .menu-toggle.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .menu-toggle.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 900px) {
  .site-header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 15px 20px;
  }
  .site-header .container .site-branding a {
    width: 300px;
    height: 60px;
  }
  .site-header .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    background: #333;
    width: 100vw;
    max-width: 320px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  .site-header .main-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding: 30px 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .site-header .main-navigation ul li a {
    text-align: center;
    padding: 12px 16px;
    background: #444;
    display: block;
  }
  .site-header .main-navigation ul li a:hover {
    background: #555;
  }
  .site-header .main-navigation ul li a.active, .site-header .main-navigation ul li a.current-menu-item {
    background: #2b72c9;
  }
  .site-header .main-navigation.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .site-header .menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .site-header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 12px 15px;
  }
  .site-header .container .site-branding a {
    width: 250px;
    height: 50px;
  }
  .site-header .main-navigation {
    max-width: 280px;
  }
  .site-header .main-navigation ul {
    padding: 20px 15px;
    gap: 10px;
  }
  .site-header .main-navigation ul li a {
    padding: 10px 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .site-header .menu-toggle {
    width: 40px;
    height: 40px;
    right: 15px;
  }
  .site-header .menu-toggle .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 4px auto;
  }
}
footer.site-footer {
  color: #888;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0 40px 0;
  -webkit-box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.15), 0 -4px 20px rgba(142, 36, 170, 0.1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.15), 0 -4px 20px rgba(142, 36, 170, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(142, 36, 170, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(75, 85, 205, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
footer.site-footer .container {
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
footer.site-footer .site-branding {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
}
footer.site-footer .site-branding a {
  display: block;
  width: 220px;
  height: 48px;
  overflow: hidden;
  text-indent: -1000px;
  margin-bottom: 20px;
  -webkit-filter: drop-shadow(0 3px 12px rgba(142, 36, 170, 0.2));
  filter: drop-shadow(0 3px 12px rgba(142, 36, 170, 0.2));
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
footer.site-footer .site-branding a.logo {
  background: url("../assets/images/riad-kilani-logo.png") no-repeat center center;
  background-size: contain;
}
footer.site-footer .site-branding a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
footer.site-footer .site-branding a::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, transparent, rgba(142, 36, 170, 0.2), transparent);
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
footer.site-footer .site-branding a:hover {
  -webkit-filter: drop-shadow(0 6px 20px rgba(43, 114, 201, 0.3));
  filter: drop-shadow(0 6px 20px rgba(43, 114, 201, 0.3));
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
footer.site-footer .site-branding a:hover::after {
  opacity: 1;
}
footer.site-footer .site-branding p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-transform: uppercase;
}
footer.site-footer nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  text-transform: uppercase;
  font-size: 15px;
}
footer.site-footer nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
footer.site-footer nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(142, 36, 170, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(142, 36, 170, 0.3), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
footer.site-footer nav ul li a:hover {
  color: #fff;
  background: rgba(142, 36, 170, 0.2);
  border-color: rgba(142, 36, 170, 0.4);
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
  -webkit-box-shadow: 0 4px 15px rgba(142, 36, 170, 0.2);
  box-shadow: 0 4px 15px rgba(142, 36, 170, 0.2);
}
footer.site-footer nav ul li a:hover::before {
  left: 100%;
}
footer.site-footer .footer-contact {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  text-align: left;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
footer.site-footer .footer-contact p {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
footer.site-footer .footer-contact p i {
  font-size: 18px;
  color: #8e24aa;
  width: 20px;
  text-align: center;
}
footer.site-footer .footer-contact p a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer.site-footer .footer-contact p a:hover {
  color: #8e24aa;
  text-shadow: 0 0 8px rgba(142, 36, 170, 0.4);
}
footer.site-footer .footer-contact .footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #8e24aa, #ba68c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer.site-footer .footer-contact .socials {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer.site-footer .footer-contact .socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  background: linear-gradient(135deg, rgba(142, 36, 170, 0.2), rgba(75, 85, 205, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
footer.site-footer .footer-contact .socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #8e24aa, #ba68c8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer.site-footer .footer-contact .socials a::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer.site-footer .footer-contact .socials a i {
  position: relative;
  z-index: 1;
}
footer.site-footer .footer-contact .socials a:hover {
  color: #fff;
  -webkit-transform: translateY(-3px) scale(1.1);
  transform: translateY(-3px) scale(1.1);
  -webkit-box-shadow: 0 8px 25px rgba(142, 36, 170, 0.4);
  box-shadow: 0 8px 25px rgba(142, 36, 170, 0.4);
}
footer.site-footer .footer-contact .socials a:hover::before {
  opacity: 1;
}
footer.site-footer .footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  footer.site-footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }
  footer.site-footer .container .site-branding {
    margin-bottom: 12px;
    text-align: center;
  }
  footer.site-footer .container .site-branding a {
    width: 180px;
    height: 38px;
  }
  footer.site-footer .container nav {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer.site-footer .container nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer.site-footer .container nav ul li a {
    padding: 6px 12px;
    font-size: 14px;
  }
  footer.site-footer .container .footer-contact {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
  footer.site-footer .container .footer-contact .socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
  }
  footer.site-footer .container .footer-contact .socials a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  footer.site-footer {
    padding: 40px 0 30px 0;
  }
  footer.site-footer .container {
    gap: 30px;
    padding: 0 15px;
  }
  footer.site-footer .container .site-branding a {
    height: 32px;
    width: 150px;
  }
  footer.site-footer .container nav ul {
    gap: 8px;
    font-size: 12px;
  }
  footer.site-footer .container nav ul li a {
    padding: 4px 8px;
    font-size: 12px;
  }
  footer.site-footer .container .footer-contact {
    font-size: 13px;
  }
  footer.site-footer .container .footer-contact .footer-title {
    font-size: 16px;
  }
  footer.site-footer .container .footer-contact p {
    font-size: 13px;
  }
  footer.site-footer .container .footer-contact p i {
    font-size: 16px;
  }
  footer.site-footer .container .footer-contact .socials {
    gap: 10px;
  }
  footer.site-footer .container .footer-contact .socials a {
    font-size: 16px;
    width: 36px;
    height: 36px;
  }
  footer.site-footer .footer-bottom {
    font-size: 11px;
    margin-top: 24px;
  }
}
body {
  background: linear-gradient(120deg, #0d1c2a 0%, #2b72c9 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 60% 20%, rgba(142, 36, 170, 0.09) 0%, transparent 70%), radial-gradient(ellipse at 20% 80%, rgba(43, 114, 201, 0.13) 0%, transparent 70%);
  -webkit-animation: bgMove 12s linear infinite alternate;
  animation: bgMove 12s linear infinite alternate;
}

@-webkit-keyframes bgMove {
  0% {
    background-position: 60% 20%, 20% 80%;
  }
  100% {
    background-position: 65% 25%, 25% 85%;
  }
}

@keyframes bgMove {
  0% {
    background-position: 60% 20%, 20% 80%;
  }
  100% {
    background-position: 65% 25%, 25% 85%;
  }
}
main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  margin-top: 20px;
  -webkit-box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.home main,
.blog main,
.single main,
.page main,
.archive main {
  background: rgba(255, 255, 255, 0.98);
}

.mobile-category-nav {
  display: none;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .mobile-category-nav {
    display: block;
  }
}

.mobile-cat-toggle {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin: 10px 10px 6px 10px;
}

.mobile-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: #f8f8f8;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.mobile-cat-list.open {
  max-height: 400px;
  padding: 8px 0;
}

.mobile-cat-list li {
  padding: 6px 16px;
}

.mobile-cat-list a {
  color: #0073aa;
  text-decoration: none;
  display: block;
}

.mobile-cat-list a:hover {
  color: #005177;
  text-decoration: underline;
}

.breadcrumbs {
  font-size: 0.95em;
  margin-bottom: 1em;
  background: #f8f8f8;
  padding: 8px 16px;
  border-radius: 4px;
  color: #555;
  display: inline-block;
}

.breadcrumbs a {
  color: #0073aa;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #005177;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #222;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-sidebar-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.single-content,
.listing-content {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 0;
}

.blog-content {
  background: #f8f9fa;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
  box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
  padding: 20px;
}

.sidebar-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.blog-snippet, .blog-full {
  margin-bottom: 30px;
  padding-bottom: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-snippet h2, .blog-full h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.blog-snippet .excerpt, .blog-full .excerpt {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.archive-header {
  margin-bottom: 30px;
  padding: 20px 30px;
  background: linear-gradient(135deg, #2b72c9, rgb(77.8893442623, 140.4508196721, 217.1106557377));
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 32px rgba(43, 114, 201, 0.15);
  box-shadow: 0 8px 32px rgba(43, 114, 201, 0.15);
  position: relative;
  overflow: hidden;
}
.archive-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.archive-header .archive-title {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.archive-header .archive-title:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.archive-header .archive-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.post-navigation {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}
.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .post-navigation .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 45%;
}
@media (max-width: 768px) {
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    max-width: 100%;
  }
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 16px rgba(43, 114, 201, 0.15);
  box-shadow: 0 4px 16px rgba(43, 114, 201, 0.15);
  border-color: #2b72c9;
}
.post-navigation .nav-subtitle {
  display: block;
  font-size: 14px;
  color: #2b72c9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.post-navigation .nav-title {
  display: block;
  font-family: "TrajanProBold", serif;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  font-weight: normal;
}
.post-navigation .nav-next {
  text-align: right;
}
@media (max-width: 768px) {
  .post-navigation .nav-next {
    text-align: left;
  }
}

.page-links {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}
.page-links .page-links-title {
  display: block;
  font-family: "TrajanProBold", serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-weight: normal;
}
.page-links span, .page-links a {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-links span:hover, .page-links a:hover {
  background: #2b72c9;
  color: white;
  border-color: #2b72c9;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.page-links span {
  background: #2b72c9;
  color: white;
  border-color: #2b72c9;
  cursor: default;
}
@media (max-width: 480px) {
  .page-links {
    padding: 15px;
  }
  .page-links span, .page-links a {
    margin: 2.5px;
    padding: 10px;
    min-width: 35px;
    font-size: 14px;
  }
}

.sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 0;
}

.widget {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.widget-title {
  color: #333;
  font-family: "TrajanProBold", serif;
  font-size: 18px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2b72c9), color-stop(rgb(161.9139344262, 194.7950819672, 235.0860655738)), to(transparent));
  background: linear-gradient(90deg, #2b72c9, rgb(161.9139344262, 194.7950819672, 235.0860655738), transparent);
  border-radius: 2px;
}
.widget-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(119.9016393443, 167.6229508197, 226.0983606557)), color-stop(rgb(203.9262295082, 221.9672131148, 244.0737704918)), to(transparent));
  background: linear-gradient(90deg, rgb(119.9016393443, 167.6229508197, 226.0983606557), rgb(203.9262295082, 221.9672131148, 244.0737704918), transparent);
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.widget ul li:last-child {
  border-bottom: none;
}
.widget ul li a {
  color: #555;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.widget ul li a:hover {
  color: #2b72c9;
}
.widget p {
  line-height: 1.6;
  color: #666;
}
.widget .wp-block-tag-cloud,
.widget .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.widget .wp-block-tag-cloud a,
.widget .tagcloud a {
  display: inline-block;
  padding: 6px 12px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px !important;
  font-weight: 500;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.widget .wp-block-tag-cloud a:hover,
.widget .tagcloud a:hover {
  background: #f8f9fa;
  color: #333;
  border-color: #2b72c9;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(43, 114, 201, 0.2);
  box-shadow: 0 4px 8px rgba(43, 114, 201, 0.2);
}
.widget .wp-block-tag-cloud a::after,
.widget .tagcloud a::after {
  content: " (" attr(title) ")";
  font-size: 9px;
  opacity: 0.8;
  font-weight: 600;
  color: #2b72c9;
  background: rgba(43, 114, 201, 0.1);
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  min-width: 12px;
  text-align: center;
}
.widget .wp-block-tag-cloud a[style*="font-size: 8pt"],
.widget .tagcloud a[style*="font-size: 8pt"] {
  font-size: 11px !important;
  padding: 4px 8px;
}
.widget .wp-block-tag-cloud a[style*="font-size: 10pt"], .widget .wp-block-tag-cloud a[style*="font-size: 12pt"],
.widget .tagcloud a[style*="font-size: 10pt"],
.widget .tagcloud a[style*="font-size: 12pt"] {
  font-size: 12px !important;
  padding: 6px 10px;
}
.widget .wp-block-tag-cloud a[style*="font-size: 14pt"], .widget .wp-block-tag-cloud a[style*="font-size: 16pt"],
.widget .tagcloud a[style*="font-size: 14pt"],
.widget .tagcloud a[style*="font-size: 16pt"] {
  font-size: 13px !important;
  padding: 8px 12px;
  font-weight: 600;
}
.widget .wp-block-tag-cloud a[style*="font-size: 18pt"], .widget .wp-block-tag-cloud a[style*="font-size: 20pt"], .widget .wp-block-tag-cloud a[style*="font-size: 22pt"],
.widget .tagcloud a[style*="font-size: 18pt"],
.widget .tagcloud a[style*="font-size: 20pt"],
.widget .tagcloud a[style*="font-size: 22pt"] {
  font-size: 14px !important;
  padding: 10px 14px;
  font-weight: 700;
}

.footer-widgets {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0;
}
.footer-widgets .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-widgets .widget {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.footer-widgets .widget-title {
  color: #ecf0f1;
  font-family: "TrajanProBold", serif;
  font-size: 18px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
}
.footer-widgets .widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2b72c9), color-stop(rgb(161.9139344262, 194.7950819672, 235.0860655738)), to(transparent));
  background: linear-gradient(90deg, #2b72c9, rgb(161.9139344262, 194.7950819672, 235.0860655738), transparent);
  border-radius: 2px;
}
.footer-widgets .widget-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(119.9016393443, 167.6229508197, 226.0983606557)), color-stop(rgb(203.9262295082, 221.9672131148, 244.0737704918)), to(transparent));
  background: linear-gradient(90deg, rgb(119.9016393443, 167.6229508197, 226.0983606557), rgb(203.9262295082, 221.9672131148, 244.0737704918), transparent);
}
.footer-widgets .widget ul li a {
  color: #bdc3c7;
}
.footer-widgets .widget ul li a:hover {
  color: #2b72c9;
}
.footer-widgets .widget .wp-block-tag-cloud a,
.footer-widgets .widget .tagcloud a {
  background: rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.footer-widgets .widget .wp-block-tag-cloud a:hover,
.footer-widgets .widget .tagcloud a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
  border-color: #2b72c9;
}
.footer-widgets .widget .wp-block-tag-cloud a::after,
.footer-widgets .widget .tagcloud a::after {
  content: " (" attr(title) ")";
  font-size: 9px;
  opacity: 0.9;
  font-weight: 600;
  color: #2b72c9;
  background: rgba(43, 114, 201, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  min-width: 12px;
  text-align: center;
}

pre, code {
  font-family: "Fira Code", "Consolas", "Monaco", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
}

code {
  background: #252526;
  color: #d4d4d4;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #3c3c3c;
  font-size: 13px;
}
pre code {
  background: none;
  padding: 0;
  border: none;
  font-size: inherit;
}

pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3c3c3c;
  overflow-x: auto;
  margin: 30px 0;
  position: relative;
}
pre::-webkit-scrollbar {
  height: 8px;
}
pre::-webkit-scrollbar-track {
  background: #252526;
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb {
  background: #3c3c3c;
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb:hover {
  background: rgb(85.5, 85.5, 85.5);
}
pre:hover .copy-button {
  opacity: 1;
}

.code-language {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 11px;
  color: #6a9955;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.copy-button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #252526;
  border: 1px solid #3c3c3c;
  color: #d4d4d4;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.copy-button:hover {
  background: #3c3c3c;
}

.wp-block-code {
  background: #1e1e1e;
  border: 1px solid #3c3c3c;
  border-radius: 8px;
}
.wp-block-code code {
  color: #d4d4d4;
  background: none;
}

.hljs {
  background: #1e1e1e;
  color: #d4d4d4;
}

.hljs-comment,
.hljs-quote {
  color: #6a9955;
  font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-type {
  color: #569cd6;
  font-weight: 600;
}

.hljs-string,
.hljs-doctag {
  color: #ce9178;
}

.hljs-number {
  color: #b5cea8;
}

.hljs-function,
.hljs-title,
.hljs-built_in {
  color: #dcdcaa;
  font-weight: 600;
}

.hljs-variable,
.hljs-attr,
.hljs-name {
  color: #9cdcfe;
}

.hljs-operator,
.hljs-punctuation {
  color: #d4d4d4;
}

.hljs-class,
.hljs-constructor {
  color: #4ec9b0;
  font-weight: 600;
}

.hljs-regexp {
  color: #d16969;
}

.hljs-meta {
  color: #75beff;
}

.hljs-deletion {
  background: rgba(244, 71, 71, 0.2);
  color: #f44747;
}

.hljs-addition {
  background: rgba(137, 209, 133, 0.2);
  color: #89d185;
}

.language-javascript .hljs-built_in,
.language-js .hljs-built_in,
.language-typescript .hljs-built_in,
.language-ts .hljs-built_in {
  color: #4fc1ff;
}
.language-javascript .hljs-property,
.language-js .hljs-property,
.language-typescript .hljs-property,
.language-ts .hljs-property {
  color: #9cdcfe;
}

.language-css .hljs-selector-class,
.language-scss .hljs-selector-class {
  color: #d7ba7d;
}
.language-css .hljs-selector-id,
.language-scss .hljs-selector-id {
  color: #b8d7a3;
}
.language-css .hljs-property,
.language-scss .hljs-property {
  color: #92c5f7;
}
.language-css .hljs-value,
.language-scss .hljs-value {
  color: #ce9178;
}

.language-html .hljs-tag {
  color: #569cd6;
}
.language-html .hljs-name {
  color: #4fc1ff;
}
.language-html .hljs-attr {
  color: #92c5f7;
}

.language-php .hljs-variable {
  color: #9cdcfe;
}
.language-php .hljs-keyword {
  color: #569cd6;
}
.language-php .hljs-class {
  color: #4ec9b0;
}

.language-json .hljs-attr {
  color: #9cdcfe;
}
.language-json .hljs-string {
  color: #ce9178;
}
.language-json .hljs-number {
  color: #b5cea8;
}
.language-json .hljs-literal {
  color: #569cd6;
}

.language-bash,
.language-shell,
.language-terminal {
  background: #0c0c0c;
  color: #cccccc;
}
.language-bash .hljs-built_in,
.language-shell .hljs-built_in,
.language-terminal .hljs-built_in {
  color: #4fc1ff;
}
.language-bash .hljs-variable,
.language-shell .hljs-variable,
.language-terminal .hljs-variable {
  color: #75beff;
}
.language-bash .hljs-string,
.language-shell .hljs-string,
.language-terminal .hljs-string {
  color: #89d185;
}

.post-content p code {
  background: #252526;
  color: #d4d4d4;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  border: 1px solid #3c3c3c;
}
.post-content .code-block-with-lines {
  position: relative;
}
.post-content .code-block-with-lines .line-numbers {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: #252526;
  border-right: 1px solid #3c3c3c;
  color: #6a9955;
  font-size: 12px;
  line-height: 1.5;
  padding: 20px 8px;
  text-align: right;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.post-content .code-block-with-lines .line-numbers span {
  display: block;
}
.post-content .code-block-with-lines pre {
  padding-left: 60px;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #6a9955;
  font-style: italic;
}

.token.punctuation {
  color: #d4d4d4;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #b5cea8;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #ce9178;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #d4d4d4;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #569cd6;
}

.token.function,
.token.class-name {
  color: #dcdcaa;
}

.token.regex,
.token.important,
.token.variable {
  color: #9cdcfe;
}

@media (max-width: 768px) {
  pre {
    padding: 15px;
    font-size: 13px;
    overflow-x: auto;
    white-space: pre;
  }
  .code-block-with-lines .line-numbers {
    width: 35px;
    padding: 15px 6px;
    font-size: 11px;
  }
  .code-block-with-lines pre {
    padding-left: 50px;
  }
}
@media (max-width: 480px) {
  pre {
    margin: 20px 0;
    border-radius: 12px;
  }
  code {
    font-size: 12px;
  }
}
@media (prefers-color-scheme: dark) {
  pre, code {
    background: #1e1e1e;
    color: #d4d4d4;
    border-color: #3c3c3c;
  }
}
@media (prefers-contrast: high) {
  pre {
    border: 2px solid #d4d4d4;
  }
  code {
    border: 1px solid #d4d4d4;
  }
}
@media (max-width: 768px) {
  .content-sidebar-wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 20px;
  }
  .content-sidebar-wrapper .single-content {
    max-width: 100%;
    padding: 0;
  }
  .content-sidebar-wrapper .single-content .blog-full {
    padding: 15px;
  }
  .sidebar-wrapper {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .featured-image {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }
  .featured-image-right {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }
  .sidebar {
    margin-top: 20px;
  }
  .site-header .container .site-branding a {
    width: 250px;
    height: 48px;
  }
  .site-header .container .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .site-header .container .main-navigation.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header .container .main-navigation ul.main-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  .site-header .container .main-navigation ul.main-nav li {
    border-bottom: 1px solid #eee;
  }
  .site-header .container .main-navigation ul.main-nav li:last-child {
    border-bottom: none;
  }
  .site-header .container .main-navigation ul.main-nav li a {
    display: block;
    padding: 15px 0;
    border-radius: 0;
  }
  .site-header .container .main-navigation ul.main-nav li a:hover {
    background: none;
    color: #2b72c9;
    padding-left: 10px;
  }
  .site-header .container .menu-toggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 480px) {
  .content-sidebar-wrapper {
    gap: 15px;
  }
  .sidebar {
    padding: 15px;
  }
  .widget {
    padding: 15px;
    margin-bottom: 20px;
  }
  .site-header .container {
    padding: 20px 0;
  }
  .site-header .container .site-branding a {
    width: 200px;
    height: 38px;
  }
}
.contact-section {
  margin: 0 auto;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
  box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
}
.contact-section h1 {
  font-size: 2rem;
  color: #2b72c9;
  text-align: center;
  margin-bottom: 20px;
  font-family: "TrajanProBold", serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact-section h1 i {
  margin-right: 10px;
  color: #8e24aa;
  -webkit-filter: drop-shadow(0 2px 4px rgba(43, 114, 201, 0.13));
  filter: drop-shadow(0 2px 4px rgba(43, 114, 201, 0.13));
}
.contact-section .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-section .contact-message {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-weight: 500;
  width: 100%;
}
.contact-section .contact-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact-section .contact-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.contact-section .contact-message.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.contact-section .contact-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 320px;
  flex: 1 1 320px;
  min-width: 220px;
}
.contact-section .contact-info h2 {
  font-size: 1.5rem;
  color: #217dbb;
  margin-bottom: 12px;
  font-family: "TrajanProBold", serif;
  font-weight: 600;
}
.contact-section .contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.7;
}
.contact-section .contact-info .contact-highlight {
  display: inline-block;
  background: #eee;
  color: #2b72c9;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  margin-top: 8px;
}
.contact-section .contact-info .contact-highlight i {
  margin-right: 6px;
}
.contact-section .contact-info .contact-social {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.contact-section .contact-info .contact-social .btn {
  background-color: #2b72c9;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  font-size: 14px;
}
.contact-section .contact-info .contact-social .btn:hover {
  background: #217dbb;
}
.contact-section .contact-info .contact-social .btn i {
  margin-right: 6px;
  font-size: 16px;
  vertical-align: middle;
}
.contact-section .contact-form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 340px;
  flex: 1 1 340px;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 12px rgba(43, 114, 201, 0.07);
  box-shadow: 0 2px 12px rgba(43, 114, 201, 0.07);
  padding: 28px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.contact-section .contact-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.contact-section .contact-form .form-group label {
  font-weight: 600;
  color: #217dbb;
  font-size: 15px;
}
.contact-section .contact-form .form-group label i {
  margin-right: 6px;
  color: #8e24aa;
}
.contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  background-color: #f8f9fa;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.contact-section .contact-form .form-group input:focus, .contact-section .contact-form .form-group textarea:focus {
  border-color: #2b72c9;
  outline: none;
}
.contact-section .contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-form .send-btn {
  background-color: #2b72c9;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #2b72c9), to(#8e24aa));
  background: linear-gradient(90deg, #2b72c9 60%, #8e24aa 100%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(43, 114, 201, 0.09);
  box-shadow: 0 2px 8px rgba(43, 114, 201, 0.09);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.contact-section .contact-form .send-btn:hover {
  background: #217dbb;
}
.contact-section .contact-form .send-btn i {
  margin-right: 6px;
}
.contact-section .contact-form .send-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #217dbb), to(#8e24aa));
  background: linear-gradient(90deg, #217dbb 60%, #8e24aa 100%);
}

@media (max-width: 900px) {
  .contact-section {
    padding: 24px 10px;
  }
  .contact-section .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .contact-section .contact-info h2 {
    font-size: 1.25rem;
  }
  .contact-section .contact-info p {
    font-size: 0.875rem;
  }
  .contact-section .contact-form {
    padding: 18px 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 12px 4px;
  }
  .contact-section .contact-content {
    gap: 14px;
  }
  .contact-section .contact-info h2 {
    font-size: 1rem;
  }
  .contact-section .contact-info p {
    font-size: 0.75rem;
  }
  .contact-section .contact-form {
    padding: 10px 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
}
/**
 * Partial: _comments.scss
 * Purpose: Modern, clean styles for WordPress comments section matching site theme.
 * Usage: Import in style.scss or main SCSS entry.
 */
.comments-area {
  margin-top: 48px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 32px rgba(43, 114, 201, 0.07);
  box-shadow: 0 4px 32px rgba(43, 114, 201, 0.07);
  padding: 40px 32px;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #217dbb;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 2px solid #2b72c9;
  padding-bottom: 12px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  margin-bottom: 32px;
  padding: 32px 24px;
  border-radius: 10px;
  background: #f8f9fa;
  -webkit-box-shadow: 0 2px 12px rgba(43, 114, 201, 0.04);
  box-shadow: 0 2px 12px rgba(43, 114, 201, 0.04);
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, background 0.2s;
  transition: box-shadow 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
}
.comment:hover {
  -webkit-box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
  box-shadow: 0 4px 24px rgba(43, 114, 201, 0.09);
  background: #fff;
}

.comment-avatar, .comment-author.vcard .avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(43, 114, 201, 0.08);
  box-shadow: 0 2px 8px rgba(43, 114, 201, 0.08);
  border: 2px solid #2b72c9;
  background: #fff;
  margin-right: 16px;
}

.comment-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}

.comment-meta {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #888;
}

.comment-author.vcard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #217dbb;
}
.comment-author.vcard .fn {
  font-weight: 700;
  color: #217dbb;
  margin-right: 4px;
}
.comment-author.vcard .fn a.url {
  color: #217dbb;
  text-decoration: none;
}
.comment-author.vcard .fn a.url:hover {
  color: #2b72c9;
  text-decoration: underline;
}
.comment-author.vcard .says {
  color: #888;
  font-weight: 400;
  margin-left: 2px;
  font-size: 14px;
}

.comment-metadata {
  font-size: 13px;
  color: #888;
}
.comment-metadata a {
  color: #888;
  text-decoration: none;
}
.comment-metadata a:hover {
  color: #2b72c9;
  text-decoration: underline;
}
.comment-metadata .edit-link {
  margin-left: 8px;
}
.comment-metadata .edit-link a {
  color: #2b72c9;
  font-size: 13px;
  text-decoration: underline;
}
.comment-metadata .edit-link a:hover {
  color: #217dbb;
  text-decoration: none;
}

.comment-content {
  margin-top: 8px;
}
.comment-content p {
  font-size: 1rem;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.7;
  background: none;
  border-radius: 0;
}

.reply {
  margin-top: 16px;
}
.reply a {
  color: #2b72c9;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  padding: 8px 18px;
  border-radius: 4px;
  background: #f4f3f4;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.reply a:hover {
  color: #217dbb;
  background: #e3e3e3;
  text-decoration: none;
}

/* Nested comments */
.comment .children {
  margin-left: 48px;
  border-left: 2px solid #2b72c9;
  padding-left: 24px;
}

/* Highlight author comments */
.comment.bypostauthor {
  border-left: 4px solid #217dbb;
  background: #eaf4ff;
}

/* Add transition for focus/active states */
.comment:focus-within {
  -webkit-box-shadow: 0 6px 32px rgba(43, 114, 201, 0.13);
  box-shadow: 0 6px 32px rgba(43, 114, 201, 0.13);
  border-color: #2b72c9;
}

/* Comment form styles */
.comment-form {
  margin-top: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 32px;
  -webkit-box-shadow: 0 2px 8px rgba(43, 114, 201, 0.05);
  box-shadow: 0 2px 8px rgba(43, 114, 201, 0.05);
  border: 1px solid #ccc;
}

.comment-form label {
  font-weight: 600;
  color: #217dbb;
  margin-bottom: 6px;
  display: block;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
  font-size: 15px;
  background: #fff;
  color: #333;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #2b72c9;
  outline: none;
}

.comment-form textarea {
  min-height: 120px;
}

.comment-form button {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #2b72c9), to(#217dbb));
  background: linear-gradient(90deg, #2b72c9 60%, #217dbb 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 2px 8px rgba(43, 114, 201, 0.08);
  box-shadow: 0 2px 8px rgba(43, 114, 201, 0.08);
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: background 0.3s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: background 0.3s, box-shadow 0.2s, transform 0.1s;
  transition: background 0.3s, box-shadow 0.2s, transform 0.1s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  outline: none;
  display: inline-block;
  margin-top: 8px;
  position: relative;
}
.comment-form button:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #217dbb), to(#2b72c9));
  background: linear-gradient(90deg, #217dbb 60%, #2b72c9 100%);
  -webkit-box-shadow: 0 4px 16px rgba(43, 114, 201, 0.13);
  box-shadow: 0 4px 16px rgba(43, 114, 201, 0.13);
  -webkit-transform: translateY(-2px) scale(1.03);
  transform: translateY(-2px) scale(1.03);
}
.comment-form button:focus {
  outline: 2px solid #217dbb;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 3px rgba(43, 114, 201, 0.15);
  box-shadow: 0 0 0 3px rgba(43, 114, 201, 0.15);
}
.comment-form button:active {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
/*# sourceMappingURL=rk-blog.css.map */
