/*!******************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/@wordpress/scripts/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./resources/scss/style.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*!
Theme Name: duinav
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: duinav
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

duinav is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
--------------------------------------------------------------*/
.promo-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.site-header.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.header .nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 968px) {
  .site-header.header .nav {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.site-header.header .nav .site-branding .logo {
  font-size: 24px;
  font-weight: 700;
}
.site-header.header .nav .site-branding .logo a {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .logo a:hover {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.site-header.header .nav .site-branding .site-title a {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-title a:hover {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-description {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (max-width: 968px) {
  .site-header.header .nav .desktop-navigation {
    display: none !important;
  }
}
.site-header.header .nav .desktop-navigation .main-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.site-header.header .nav .desktop-navigation .main-navigation li a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-header.header .nav .desktop-navigation .main-navigation li a:hover {
  color: #3b82f6;
}
.site-header.header .nav .desktop-navigation .main-navigation li.current-menu-item a, .site-header.header .nav .desktop-navigation .main-navigation li.current_page_item a {
  color: #3b82f6;
}
.site-header.header .nav .header-cta.desktop-only {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 968px) {
  .site-header.header .nav .header-cta.desktop-only {
    display: none !important;
  }
}
.site-header.header .nav .header-cta.desktop-only .nav-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.site-header.header .nav .header-cta.desktop-only .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}
.site-header.header .nav .header-cta.desktop-only .nav-login {
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.site-header.header .nav .header-cta.desktop-only .nav-login:hover {
  background: #f9fafb;
  border-color: #3b82f6;
  color: #3b82f6;
  text-decoration: none;
  transform: translateY(-1px);
}

.hamburger-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10002;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger-toggle .hamburger-line {
  width: 24px;
  height: 3px;
  background: #111827;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-toggle.open .hamburger-line:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger-toggle.open .hamburger-line:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 11000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open {
  right: 0;
}

.mobile-menu-content {
  padding: 80px 24px 24px 24px;
  height: 100%;
  overflow-y: auto;
}

.mobile-header-cta {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-header-cta .mobile-nav-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.mobile-header-cta .mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.mobile-header-cta .mobile-nav-login {
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.mobile-header-cta .mobile-nav-login:hover {
  background: #f1f5f9;
  border-color: #3b82f6;
  color: #3b82f6;
}

.mobile-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-navigation li {
  margin-bottom: 0;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-navigation li:last-child {
  border-bottom: none;
}
.mobile-navigation li a {
  display: block;
  padding: 16px 0;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.mobile-navigation li a:hover {
  color: #3b82f6;
  padding-left: 8px;
}
.mobile-navigation li.current-menu-item a, .mobile-navigation li.current_page_item a {
  color: #3b82f6;
  font-weight: 600;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  display: none !important;
}

.custom-logo-link {
  display: inline-block;
}
.custom-logo-link .custom-logo {
  max-height: 40px;
  width: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: absolute;
  left: 6px;
  top: 7px;
  z-index: 999999;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
}

@media (min-width: 969px) {
  .mobile-menu-container {
    display: none !important;
  }
}

.promo-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.site-header.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.header .nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 968px) {
  .site-header.header .nav {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.site-header.header .nav .site-branding .logo {
  font-size: 24px;
  font-weight: 700;
}
.site-header.header .nav .site-branding .logo a {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .logo a:hover {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.site-header.header .nav .site-branding .site-title a {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-title a:hover {
  color: #111827;
  text-decoration: none;
}
.site-header.header .nav .site-branding .site-description {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (max-width: 968px) {
  .site-header.header .nav .desktop-navigation {
    display: none !important;
  }
}
.site-header.header .nav .desktop-navigation .main-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.site-header.header .nav .desktop-navigation .main-navigation li a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-header.header .nav .desktop-navigation .main-navigation li a:hover {
  color: #3b82f6;
}
.site-header.header .nav .desktop-navigation .main-navigation li.current-menu-item a, .site-header.header .nav .desktop-navigation .main-navigation li.current_page_item a {
  color: #3b82f6;
}
.site-header.header .nav .header-cta.desktop-only {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 968px) {
  .site-header.header .nav .header-cta.desktop-only {
    display: none !important;
  }
}
.site-header.header .nav .header-cta.desktop-only .nav-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.site-header.header .nav .header-cta.desktop-only .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}
.site-header.header .nav .header-cta.desktop-only .nav-login {
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.site-header.header .nav .header-cta.desktop-only .nav-login:hover {
  background: #f9fafb;
  border-color: #3b82f6;
  color: #3b82f6;
  text-decoration: none;
  transform: translateY(-1px);
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header + .dashboard-header {
  top: auto;
  position: relative;
}
.dashboard-header .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-header .welcome-message .welcome-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}
.dashboard-header .welcome-message .welcome-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}
.dashboard-header .user-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dashboard-header .user-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7280;
}
.dashboard-header .user-progress .progress-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0deg calc(var(--percentage) * 3.6deg), #e5e7eb calc(var(--percentage) * 3.6deg) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dashboard-header .user-progress .progress-ring::before {
  content: "";
  width: 25px !important;
  height: 25px !important;
  background: white;
  border-radius: 50%;
  position: absolute;
}
.dashboard-header .user-progress .progress-ring span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
}
.dashboard-header .user-avatar-container {
  position: relative;
}
.dashboard-header .user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.dashboard-header .user-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.dashboard-header .user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.dashboard-header .user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dashboard-header .user-dropdown .dropdown-header {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.dashboard-header .user-dropdown .dropdown-header .user-info .user-name {
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
  font-size: 14px;
}
.dashboard-header .user-dropdown .dropdown-header .user-info .user-email {
  font-size: 12px;
  color: #6b7280;
}
.dashboard-header .user-dropdown .dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}
.dashboard-header .user-dropdown .dropdown-item {
  padding: 8px;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #dc2626;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 14px;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link:hover {
  background: #fef2f2;
  color: #b91c1c;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link .logout-icon {
  font-size: 16px;
}

.hamburger-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10001;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger-toggle .hamburger-line {
  width: 24px;
  height: 3px;
  background: #111827;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-toggle.open .hamburger-line:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger-toggle.open .hamburger-line:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 10000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open {
  right: 0;
}

.mobile-menu-content {
  padding: 80px 24px 24px 24px;
  height: 100%;
  overflow-y: auto;
}

.mobile-header-cta {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-header-cta .mobile-nav-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.mobile-header-cta .mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.mobile-header-cta .mobile-nav-login {
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.mobile-header-cta .mobile-nav-login:hover {
  background: #f1f5f9;
  border-color: #3b82f6;
  color: #3b82f6;
}

.mobile-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-navigation li {
  margin-bottom: 0;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-navigation li:last-child {
  border-bottom: none;
}
.mobile-navigation li a {
  display: block;
  padding: 16px 0;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.mobile-navigation li a:hover {
  color: #3b82f6;
  padding-left: 8px;
}
.mobile-navigation li.current-menu-item a, .mobile-navigation li.current_page_item a {
  color: #3b82f6;
  font-weight: 600;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  display: none !important;
}

.custom-logo-link {
  display: inline-block;
}
.custom-logo-link .custom-logo {
  max-height: 40px;
  width: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: absolute;
  left: 6px;
  top: 7px;
  z-index: 999999;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
}

@media (min-width: 969px) {
  .mobile-menu-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .dashboard-header .header-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .dashboard-header .welcome-message .welcome-title {
    font-size: 24px;
  }
  .dashboard-header .welcome-message .welcome-subtitle {
    font-size: 14px;
  }
  .dashboard-header .user-menu {
    width: 100%;
    justify-content: space-between;
  }
  .dashboard-header .user-progress span {
    font-size: 12px;
  }
}
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 80px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.site-footer .footer-column {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-column.footer-about {
  max-width: 400px;
}
@media (max-width: 767px) {
  .site-footer .footer-column.footer-about {
    max-width: 100%;
  }
}
.site-footer .footer-logo {
  margin-bottom: 16px;
}
.site-footer .footer-logo .logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-logo .logo .accent {
  color: #3b82f6;
}
.site-footer .footer-tagline {
  margin-bottom: 24px;
  line-height: 1.6;
}
.site-footer .footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .site-footer .footer-heading {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }
}
.site-footer .footer-links,
.site-footer .footer-menu-column .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-links li,
.site-footer .footer-menu-column .menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-links a,
.site-footer .footer-menu-column .menu a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}
.site-footer .footer-links a:hover,
.site-footer .footer-menu-column .menu a:hover {
  color: #3b82f6;
}
.site-footer .footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 32px 0;
}
.site-footer .footer-bottom .footer-bottom-content {
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer .footer-bottom .footer-bottom-content {
    text-align: left;
  }
}
.site-footer .footer-bottom .footer-bottom-content p {
  margin: 0 0 8px 0;
  font-size: 0.875rem;
}
.site-footer .footer-bottom .footer-bottom-content .footer-disclaimer {
  color: #6b7280;
  font-size: 0.75rem !important;
}

.single-post {
  background: #f8fafc;
  margin-top: 0;
  padding-top: 60px;
}

body.single {
  margin: 0;
  padding: 0;
}

.header {
  margin-top: 0;
  padding-top: 0;
}

.post-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.post-content-wrapper .post-breadcrumb {
  grid-column: 1/-1;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.post-content-wrapper .post-breadcrumb a {
  color: #374151 !important;
  text-decoration: none;
  font-weight: 500;
}

.post-content-wrapper .post-breadcrumb a:hover {
  color: #3b82f6 !important;
}

.post-content-wrapper .post-breadcrumb .breadcrumb-sep {
  margin: 0 8px;
  color: #6b7280 !important;
}

.post-content-wrapper .post-breadcrumb .breadcrumb-current {
  color: #111827 !important;
  font-weight: 600;
}

.post-content-wrapper .content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 968px) {
  .post-content-wrapper .content-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 968px) {
  .post-content-wrapper {
    padding-bottom: 60px;
  }
}
.post-main-content {
  background: white;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .post-main-content {
    padding: 32px 24px;
    border-radius: 12px;
  }
}
.entry-content {
  color: #1f2937;
  line-height: 1.7;
  font-size: 1.125rem;
}

.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: #111827;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.entry-content h2 {
  font-size: 2rem;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 12px;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .entry-content h2 {
    font-size: 1.5rem;
  }
}
.entry-content h3 {
  font-size: 1.5rem;
  color: #2563eb;
  position: relative;
}

.entry-content h3::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #3b82f6;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .entry-content h3 {
    font-size: 1.25rem;
  }
  .entry-content h3::before {
    left: -12px;
  }
}
.entry-content h4 {
  font-size: 1.25rem;
  color: #111827;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content p.lead {
  font-size: 1.25rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-left: 16px;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  padding: 20px;
  border-radius: 8px;
}

.entry-content ul, .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.entry-content ul li, .entry-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.entry-content ul li::marker, .entry-content ol li::marker {
  color: #3b82f6;
  font-weight: 600;
}

.entry-content ul ul, .entry-content ul ol, .entry-content ol ul, .entry-content ol ol {
  margin: 0.5rem 0;
}

.entry-content a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.entry-content a:hover {
  color: #1d4ed8;
  border-bottom-color: #3b82f6;
}

.entry-content code {
  font-family: "Monaco", "Consolas", monospace;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  color: #1d4ed8;
  font-weight: 500;
}

.entry-content pre {
  background: #111827;
  color: #f8fafc;
  padding: 24px;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #f8fafc;
  font-weight: normal;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.entry-content img:hover {
  transform: scale(1.02);
}

.entry-content blockquote {
  margin: 2.5rem 0;
  padding: 32px;
  background: linear-gradient(135deg, #f1f5f9 0%, white 100%);
  border-left: 6px solid #3b82f6;
  border-radius: 12px;
  font-style: italic;
  font-size: 1.25rem;
  color: #374151;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.entry-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #3b82f6;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.entry-content blockquote p {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  color: #6b7280;
  font-style: normal;
  font-weight: 600;
}

.entry-content blockquote cite::before {
  content: "— ";
  color: #3b82f6;
}

.post-sidebar {
  position: relative;
}

@media (max-width: 968px) {
  .post-sidebar {
    display: none !important;
  }
}
.ad-container {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.ad-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ad-container:last-child {
  margin-bottom: 0;
}

.ad-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
}

.course-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.course-cta .ad-label {
  color: rgba(255, 255, 255, 0.8);
}

.course-cta .cta-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.course-cta .cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-cta .hero-stats {
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
}

.course-cta .hero-stats .stat {
  text-align: center;
}

.course-cta .hero-stats .stat-number {
  color: white;
  font-size: 1.5rem;
  display: block;
  font-weight: 700;
}

.course-cta .hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.course-cta .price-info {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin: 16px 0;
}

.course-cta .price-info .price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.course-cta .price-info .price-current {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 8px;
}

.course-cta .price-info .price-save {
  font-size: 0.85rem;
  margin-top: 4px;
}

.course-cta .cta-button {
  background: white;
  color: #3b82f6;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.2s ease;
}

.course-cta .cta-button:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.course-cta .trust-indicators {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-signup {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-align: center;
}

.newsletter-signup .ad-label {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-signup h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 600;
}

.newsletter-signup p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-signup .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-signup .newsletter-form input[type=email] {
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.newsletter-signup .newsletter-form input[type=email]:focus {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.newsletter-signup .newsletter-form input[type=email]::-moz-placeholder {
  color: #9ca3af;
}

.newsletter-signup .newsletter-form input[type=email]::placeholder {
  color: #9ca3af;
}

.newsletter-signup .newsletter-form button {
  background: white;
  color: #10b981;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-signup .newsletter-form button:hover:not(:disabled) {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-signup .newsletter-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.related-posts .section-title {
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 600;
}

.related-post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.related-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-post-item:hover {
  transform: translateX(4px);
}

.related-post-item .post-thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-post-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.related-post-item .post-info {
  flex: 1;
}

.related-post-item .post-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.4;
}

.related-post-item .post-info h4 a {
  color: inherit;
  text-decoration: none;
}

.related-post-item .post-info h4 a:hover {
  color: #3b82f6;
}

.related-post-item .post-info .post-date {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

.post-tags {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #f3f4f6;
}

.post-tags .tags-label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  background: linear-gradient(135deg, #f1f5f9 0%, white 100%);
  color: #374151;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  margin: 0 8px 8px 0;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  font-weight: 500;
}

.post-tags a:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.author-bio {
  background: linear-gradient(135deg, #f1f5f9 0%, white 100%);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.author-bio .author-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.author-bio .author-header .author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.author-bio .author-header .author-info h4 {
  font-size: 1.25rem;
  color: #111827;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.author-bio .author-header .author-info p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.author-bio .author-description {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

.social-share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #f3f4f6;
}

.social-share .share-title {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
  font-weight: 600;
}

.social-share .share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-share .share-buttons .share-btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.social-share .share-buttons .share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.social-share .share-buttons .share-btn.twitter:hover {
  background: #1a91da;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.social-share .share-buttons .share-btn.facebook {
  background: #4267b2;
  color: white;
}

.social-share .share-buttons .share-btn.facebook:hover {
  background: #365899;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 103, 178, 0.4);
}

.social-share .share-buttons .share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.social-share .share-buttons .share-btn.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.social-share .share-buttons .share-btn.copy-link {
  background: #6b7280;
  color: white;
}

.social-share .share-buttons .share-btn.copy-link:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
.post-navigation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .post-navigation-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.post-navigation-wrapper .nav-links {
  display: contents;
}

.post-navigation-wrapper .nav-previous,
.post-navigation-wrapper .nav-next {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.post-navigation-wrapper .nav-previous:hover,
.post-navigation-wrapper .nav-next:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.post-navigation-wrapper .nav-previous a,
.post-navigation-wrapper .nav-next a {
  text-decoration: none;
  color: inherit;
}

.post-navigation-wrapper .nav-previous a .nav-direction,
.post-navigation-wrapper .nav-next a .nav-direction {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}

.post-navigation-wrapper .nav-previous a .nav-title,
.post-navigation-wrapper .nav-next a .nav-title {
  font-size: 1.1rem;
  color: #111827;
  font-weight: 600;
  line-height: 1.4;
}

.post-navigation-wrapper .nav-next {
  text-align: right;
}

@media print {
  .post-sidebar,
  .social-share,
  .ad-container {
    display: none !important;
  }
  .post-content-wrapper {
    grid-template-columns: 1fr;
  }
  .entry-content {
    font-size: 12pt;
    line-height: 1.5;
  }
  .entry-content a {
    color: #111827 !important;
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }
  .main-container .sidebar {
    display: none;
  }
  .main-container .content-area {
    flex: 1;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  font-size: 1em;
}

code,
kbd,
tt,
var,
samp {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1em;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

main {
  display: block;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
  box-sizing: content-box;
  overflow: visible;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  border-style: none;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
  background-color: transparent;
}

a:visited {
  color: white;
}

a:hover,
a:focus,
a:active {
  color: #191970;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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 {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

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 {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
  overflow: auto;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

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

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.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: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Interactive elements */
details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Theme-specific styles
--------------------------------------------------------------*/
.duinav-hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.duinav-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.duinav-hero-section .hero-title {
  font-size: 3rem;
  margin: 0 0 20px 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .duinav-hero-section .hero-title {
    font-size: 2rem;
  }
}
.duinav-hero-section .hero-subtitle {
  font-size: 1.2rem;
  margin: 0 0 30px 0;
  opacity: 0.9;
}
.duinav-hero-section .hero-button {
  background: #27ae60;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.duinav-hero-section .hero-button:hover {
  background: rgb(29.661971831, 132.338028169, 73.014084507);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.duinav-hero-section .hero-button:active {
  transform: translateY(0);
}

.duinav-features {
  padding: 40px 20px;
  background: #ecf0f1;
}
.duinav-features .features-container {
  max-width: 1200px;
  margin: 0 auto;
}
.duinav-features .features-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  margin: 0 0 40px 0;
}
.duinav-features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.duinav-features .feature-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 5px solid #3498db;
}
.duinav-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.duinav-features .feature-card[data-feature=scss] {
  border-left-color: #f39c12;
}
.duinav-features .feature-card[data-feature=scss]:hover {
  border-left-color: rgb(199.8795180723, 126.5060240964, 10.1204819277);
}
.duinav-features .feature-card[data-feature=js] {
  border-left-color: #27ae60;
}
.duinav-features .feature-card[data-feature=js]:hover {
  border-left-color: rgb(29.661971831, 132.338028169, 73.014084507);
}
.duinav-features .feature-card[data-feature=build] {
  border-left-color: #3498db;
}
.duinav-features .feature-card[data-feature=build]:hover {
  border-left-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.duinav-features .feature-card h3 {
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-size: 1.5rem;
}
.duinav-features .feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.duinav-interactive {
  padding: 60px 20px;
  text-align: center;
}
.duinav-interactive .interactive-container {
  max-width: 800px;
  margin: 0 auto;
}
.duinav-interactive h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin: 0 0 20px 0;
}
.duinav-interactive p {
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 30px 0;
}
.duinav-interactive .interaction-result {
  background: white;
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.duinav-interactive .interaction-result.active {
  background: #27ae60;
  color: white;
  border-color: #27ae60;
  animation: pulse 0.5s ease-in-out;
}
.duinav-interactive .interaction-result p {
  margin: 0;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.dashboard-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header + .dashboard-header {
  top: auto;
  position: relative;
}
.dashboard-header .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-header .welcome-message .welcome-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}
.dashboard-header .welcome-message .welcome-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}
.dashboard-header .user-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dashboard-header .user-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7280;
}
.dashboard-header .user-progress .progress-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0deg calc(var(--percentage) * 3.6deg), #e5e7eb calc(var(--percentage) * 3.6deg) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dashboard-header .user-progress .progress-ring::before {
  content: "";
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  position: absolute;
}
.dashboard-header .user-progress .progress-ring span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
}
.dashboard-header .user-avatar-container {
  position: relative;
}
.dashboard-header .user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.dashboard-header .user-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.dashboard-header .user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.dashboard-header .user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dashboard-header .user-dropdown .dropdown-header {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.dashboard-header .user-dropdown .dropdown-header .user-info .user-name {
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
  font-size: 14px;
}
.dashboard-header .user-dropdown .dropdown-header .user-info .user-email {
  font-size: 12px;
  color: #6b7280;
}
.dashboard-header .user-dropdown .dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}
.dashboard-header .user-dropdown .dropdown-item {
  padding: 8px;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #dc2626;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 14px;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link:hover {
  background: #fef2f2;
  color: #b91c1c;
}
.dashboard-header .user-dropdown .dropdown-item .logout-link .logout-icon {
  font-size: 16px;
}

@media (max-width: 768px) {
  .dashboard-header .header-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .dashboard-header .welcome-message .welcome-title {
    font-size: 24px;
  }
  .dashboard-header .welcome-message .welcome-subtitle {
    font-size: 14px;
  }
  .dashboard-header .user-menu {
    width: 100%;
    justify-content: space-between;
  }
  .dashboard-header .user-progress span {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style-style-index.css.map*/