:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--primary-light: #a5b4fc;
--secondary: #ec4899;
--secondary-dark: #db2777;
--accent: #f59e0b;
--dark: #1e1b4b;
--dark-light: #312e81;
--gray: #64748b;
--gray-light: #e2e8f0;
--gray-bg: #f1f5f9;
--white: #ffffff;
--success: #10b981;
--danger: #ef4444;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, var(--gray-bg) 0%, #eef2ff 100%);
color: var(--dark);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
} .site-header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-md);
position: sticky;
top: 0;
z-index: 1000;
padding: 16px 0;
}
.header-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.site-title {
font-size: 28px;
font-weight: 800;
}
.site-title a {
text-decoration: none;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.site-description {
font-size: 13px;
color: var(--gray);
margin-top: 4px;
} .main-nav {
position: relative;
}
.nav-menu {
display: flex;
list-style: none;
gap: 32px;
}
.nav-menu a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
transition: color 0.3s;
position: relative;
}
.nav-menu a::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
width: 100%;
}
.nav-menu a:hover {
color: var(--primary);
}
.menu-toggle {
display: none;
background: none;
border: none;
font-size: 28px;
cursor: pointer;
padding: 8px;
} .hero-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 24px;
padding: 60px 40px;
text-align: center;
margin: 40px 0 60px;
box-shadow: var(--shadow-xl);
}
.hero-section h1 {
font-size: 48px;
color: var(--white);
margin-bottom: 16px;
font-weight: 800;
}
.hero-section p {
font-size: 20px;
color: rgba(255,255,255,0.95);
} .content-section {
margin: 60px 0;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 16px;
}
.trending-badge {
background: linear-gradient(135deg, var(--danger) 0%, #f97316 100%);
color: var(--white);
}
.latest-badge {
background: linear-gradient(135deg, var(--success) 0%, #06b6d4 100%);
color: var(--white);
}
.badge .icon {
font-size: 16px;
}
.section-title {
font-size: 36px;
font-weight: 800;
color: var(--dark);
margin-bottom: 12px;
}
.section-underline {
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
margin: 0 auto;
border-radius: 4px;
} .posts-grid {
display: grid;
gap: 30px;
}
.grid-2cols {
grid-template-columns: repeat(2, 1fr);
} .post-card-horizontal {
display: flex;
gap: 20px;
background: var(--white);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
padding: 16px;
}
.post-card-horizontal:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
} .card-image-wrapper {
flex-shrink: 0;
width: 130px;
height: 130px;
}
.card-image-link {
display: block;
width: 100%;
height: 100%;
border-radius: 16px;
overflow: hidden;
}
.card-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.post-card-horizontal:hover .card-image {
transform: scale(1.05);
} .card-image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--gray-light) 0%, #cbd5e1 100%);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.card-image-placeholder svg {
width: 48px;
height: 48px;
color: var(--gray);
} .card-content-wrapper {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
} .post-topic {
margin-bottom: 8px;
}
.topic-label {
display: inline-block;
padding: 3px 10px;
background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
color: var(--white);
font-size: 10px;
font-weight: 600;
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
} .post-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 8px;
line-height: 1.4;
}
.post-title a {
text-decoration: none;
color: var(--dark);
transition: color 0.3s;
}
.post-title a:hover {
color: var(--primary);
} .post-excerpt {
color: var(--gray);
font-size: 13px;
margin-bottom: 10px;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .post-meta {
display: flex;
gap: 16px;
font-size: 11px;
color: var(--gray);
}
.meta-date, .meta-comments, .meta-readtime {
display: inline-flex;
align-items: center;
gap: 4px;
} .no-posts {
text-align: center;
padding: 60px;
background: var(--white);
border-radius: 20px;
color: var(--gray);
grid-column: span 2;
} .view-all-wrapper {
text-align: center;
margin-top: 48px;
}
.view-all-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
box-shadow: var(--shadow-md);
}
.view-all-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
gap: 12px;
color: var(--white);
} .site-footer {
background: var(--dark);
color: var(--white);
margin-top: 80px;
padding: 50px 0 30px;
}
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-widget h3 {
color: var(--white);
margin-bottom: 20px;
font-size: 18px;
position: relative;
padding-bottom: 10px;
}
.footer-widget h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.footer-widget ul {
list-style: none;
}
.footer-widget li {
margin-bottom: 10px;
}
.footer-widget a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s;
}
.footer-widget a:hover {
color: var(--primary-light);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.footer-menu {
display: flex;
list-style: none;
gap: 24px;
flex-wrap: wrap;
}
.footer-menu a {
color: #cbd5e1;
text-decoration: none;
font-size: 14px;
}
.footer-menu a:hover {
color: var(--primary-light);
} @media (max-width: 768px) {
.container {
padding: 0 16px;
}
.hero-section {
padding: 40px 20px;
margin: 30px 0 40px;
}
.hero-section h1 {
font-size: 32px;
}
.hero-section p {
font-size: 16px;
}
.section-title {
font-size: 28px;
} .grid-2cols {
grid-template-columns: 1fr;
} .post-card-horizontal {
flex-direction: column;
padding: 0;
}
.card-image-wrapper {
width: 100%;
height: 180px;
}
.card-image-link, .card-image-placeholder {
border-radius: 20px 20px 0 0;
}
.card-content-wrapper {
padding: 16px;
}
.menu-toggle {
display: block;
}
.nav-menu {
display: none;
position: absolute;
top: 100%;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
gap: 16px;
min-width: 200px;
border-radius: 16px;
box-shadow: var(--shadow-lg);
border: 1px solid var(--gray-light);
}
.nav-menu.show {
display: flex;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.footer-menu {
justify-content: center;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.grid-2cols {
gap: 20px;
}
.post-card-horizontal {
padding: 12px;
gap: 12px;
}
.card-image-wrapper {
width: 100px;
height: 100px;
}
.post-title {
font-size: 16px;
}
.post-excerpt {
font-size: 12px;
-webkit-line-clamp: 2;
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.post-card-horizontal {
animation: fadeInUp 0.5s ease forwards;
opacity: 0;
}
.post-card-horizontal:nth-child(1) { animation-delay: 0.1s; }
.post-card-horizontal:nth-child(2) { animation-delay: 0.2s; }
.post-card-horizontal:nth-child(3) { animation-delay: 0.3s; }
.post-card-horizontal:nth-child(4) { animation-delay: 0.4s; }  :root {
--header-bg: rgba(255, 255, 255, 0.98);
--header-text: #1e1b4b;
--header-border: #e2e8f0;
}
body.dark-mode {
--header-bg: rgba(15, 23, 42, 0.98);
--header-text: #f1f5f9;
--header-border: #334155;
} .professional-header {
background: var(--header-bg);
backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
border-bottom: 1px solid var(--header-border);
}
.professional-header.header-hidden {
transform: translateY(-100%);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
gap: 30px;
flex-wrap: wrap;
} .header-logo {
flex-shrink: 0;
}
.site-title {
font-size: 24px;
font-weight: 800;
text-decoration: none;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.header-tagline {
font-size: 11px;
color: var(--text-secondary);
display: block;
margin-top: 2px;
} .header-nav {
flex: 1;
}
.nav-menu {
display: flex;
list-style: none;
gap: 28px;
margin: 0;
padding: 0;
}
.nav-menu li {
position: relative;
}
.nav-menu a {
text-decoration: none;
color: var(--header-text);
font-weight: 500;
font-size: 15px;
transition: color 0.3s;
padding: 8px 0;
display: inline-block;
}
.nav-menu a:hover {
color: #6366f1;
} .header-controls {
display: flex;
align-items: center;
gap: 10px;
}
.header-icon {
background: transparent;
border: none;
cursor: pointer;
padding: 8px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
color: var(--header-text);
}
.header-icon:hover {
background: rgba(99, 102, 241, 0.1);
transform: scale(1.05);
} .search-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
z-index: 2000;
}
.search-overlay-container {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
position: relative;
}
.search-close {
position: absolute;
top: 30px;
right: 30px;
background: none;
border: none;
color: white;
font-size: 40px;
cursor: pointer;
transition: transform 0.3s;
}
.search-close:hover {
transform: rotate(90deg);
}
.search-wrapper {
width: 90%;
max-width: 700px;
background: var(--bg-primary);
border-radius: 16px;
padding: 30px;
}
.search-form-header {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.search-input {
flex: 1;
padding: 15px 20px;
border: 2px solid var(--border);
border-radius: 50px;
font-size: 16px;
background: var(--bg-secondary);
color: var(--text-primary);
}
.search-input:focus {
outline: none;
border-color: #6366f1;
}
.live-search-results {
max-height: 400px;
overflow-y: auto;
}
.live-search-item {
border-bottom: 1px solid var(--border);
padding: 12px;
}
.live-search-item a {
display: flex;
gap: 15px;
text-decoration: none;
}
.live-search-img {
width: 50px;
height: 50px;
border-radius: 8px;
overflow: hidden;
}
.live-search-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.live-search-info h4 {
color: var(--text-primary);
margin-bottom: 5px;
font-size: 14px;
}
.live-search-info span {
font-size: 11px;
color: var(--text-secondary);
}
.search-suggestions {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid var(--border);
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.search-suggestions span {
color: var(--text-secondary);
font-size: 13px;
}
.search-suggestions a {
padding: 5px 12px;
background: var(--bg-secondary);
border-radius: 20px;
text-decoration: none;
color: var(--text-primary);
font-size: 12px;
} .mobile-sidebar {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 350px;
height: 100%;
background: var(--bg-primary);
z-index: 2001;
transition: right 0.3s ease;
box-shadow: -5px 0 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
.mobile-sidebar.active {
right: 0;
}
.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 2000;
display: none;
}
.mobile-overlay.active {
display: block;
}
.mobile-sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid var(--border);
}
.mobile-logo {
font-size: 20px;
font-weight: 800;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.mobile-close {
background: none;
border: none;
font-size: 28px;
cursor: pointer;
color: var(--text-primary);
}
.mobile-sidebar-content {
padding: 20px;
}
.mobile-search-form {
margin-bottom: 30px;
}
.mobile-search-form form {
display: flex;
gap: 10px;
}
.mobile-search-form input {
flex: 1;
padding: 12px;
border: 1px solid var(--border);
border-radius: 25px;
background: var(--bg-secondary);
color: var(--text-primary);
}
.mobile-search-form button {
padding: 12px 18px;
background: linear-gradient(135deg, #6366f1, #ec4899);
border: none;
border-radius: 25px;
cursor: pointer;
}
.mobile-menu {
list-style: none;
}
.mobile-menu li {
margin-bottom: 15px;
}
.mobile-menu a {
text-decoration: none;
color: var(--text-primary);
font-size: 16px;
display: block;
padding: 8px 0;
}
.mobile-theme-switch {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid var(--border);
}
.mobile-dark-toggle {
width: 50px;
height: 26px;
background: var(--bg-tertiary);
border-radius: 50px;
border: none;
cursor: pointer;
position: relative;
}
.toggle-slider {
position: absolute;
width: 22px;
height: 22px;
background: #6366f1;
border-radius: 50%;
top: 2px;
left: 3px;
transition: transform 0.3s;
}
body.dark-mode .toggle-slider {
transform: translateX(24px);
} @media (max-width: 768px) {
.header-nav {
display: none;
}
.mobile-toggle {
display: flex !important;
}
.header-container {
gap: 15px;
}
.site-title {
font-size: 18px;
}
.header-tagline {
font-size: 9px;
}
.search-wrapper {
padding: 20px;
}
.search-form-header {
flex-direction: column;
}
}
@media (min-width: 769px) {
.mobile-toggle {
display: none;
}
}  :root {
--header-bg-light: rgba(255, 255, 255, 0.98);
--header-bg-dark: rgba(15, 23, 42, 0.98);
--text-light: #1e1b4b;
--text-dark: #f1f5f9;
--border-light: #e2e8f0;
--border-dark: #334155;
}
body.dark-mode {
--header-bg: var(--header-bg-dark);
--header-text: var(--text-dark);
--header-border: var(--border-dark);
}
body:not(.dark-mode) {
--header-bg: var(--header-bg-light);
--header-text: var(--text-light);
--header-border: var(--border-light);
} .professional-header {
background: var(--header-bg);
backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
border-bottom: 1px solid var(--header-border);
}
.professional-header.header-hidden {
transform: translateY(-100%);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
gap: 30px;
flex-wrap: wrap;
} .header-logo {
flex-shrink: 0;
}
.custom-logo {
height: 50px;
width: auto;
}
.site-title {
font-size: 24px;
font-weight: 800;
text-decoration: none;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.header-tagline {
font-size: 11px;
color: var(--text-secondary);
display: block;
margin-top: 2px;
} .header-nav {
flex: 1;
}
.nav-menu {
display: flex;
list-style: none;
gap: 28px;
margin: 0;
padding: 0;
}
.nav-menu li {
position: relative;
}
.nav-menu a {
text-decoration: none;
color: var(--header-text);
font-weight: 500;
font-size: 15px;
transition: color 0.3s;
padding: 8px 0;
display: inline-block;
}
.nav-menu a:hover {
color: #6366f1;
} .header-controls {
display: flex;
align-items: center;
gap: 10px;
}
.header-icon {
background: transparent;
border: none;
cursor: pointer;
padding: 8px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
color: var(--header-text);
}
.header-icon:hover {
background: rgba(99, 102, 241, 0.1);
transform: scale(1.05);
} .search-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
z-index: 2000;
}
.search-overlay-container {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
position: relative;
}
.search-close {
position: absolute;
top: 30px;
right: 30px;
background: none;
border: none;
color: white;
font-size: 40px;
cursor: pointer;
transition: transform 0.3s;
}
.search-close:hover {
transform: rotate(90deg);
}
.search-wrapper {
width: 90%;
max-width: 700px;
background: var(--bg-primary);
border-radius: 16px;
padding: 30px;
}
.search-form-header {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.search-input {
flex: 1;
padding: 15px 20px;
border: 2px solid var(--border);
border-radius: 50px;
font-size: 16px;
background: var(--bg-secondary);
color: var(--text-primary);
}
.search-input:focus {
outline: none;
border-color: #6366f1;
}
.live-search-results {
max-height: 400px;
overflow-y: auto;
display: none;
}
.live-search-item {
border-bottom: 1px solid var(--border);
padding: 12px;
}
.live-search-item a {
display: flex;
gap: 15px;
text-decoration: none;
}
.live-search-img {
width: 50px;
height: 50px;
border-radius: 8px;
overflow: hidden;
}
.live-search-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.live-search-info h4 {
color: var(--text-primary);
margin-bottom: 5px;
font-size: 14px;
}
.live-search-info span {
font-size: 11px;
color: var(--text-secondary);
}
.live-search-no-results {
text-align: center;
padding: 30px;
color: var(--text-secondary);
}
.search-suggestions {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid var(--border);
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.search-suggestions span {
color: var(--text-secondary);
font-size: 13px;
}
.search-suggestions a {
padding: 5px 12px;
background: var(--bg-secondary);
border-radius: 20px;
text-decoration: none;
color: var(--text-primary);
font-size: 12px;
transition: all 0.3s;
}
.search-suggestions a:hover {
background: linear-gradient(135deg, #6366f1, #ec4899);
color: white;
} .mobile-sidebar {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 350px;
height: 100%;
background: var(--bg-primary);
z-index: 2001;
transition: right 0.3s ease;
box-shadow: -5px 0 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
.mobile-sidebar.active {
right: 0;
}
.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 2000;
display: none;
}
.mobile-overlay.active {
display: block;
}
.mobile-sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid var(--border);
}
.mobile-logo {
font-size: 20px;
font-weight: 800;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.mobile-close {
background: none;
border: none;
font-size: 28px;
cursor: pointer;
color: var(--text-primary);
}
.mobile-sidebar-content {
padding: 20px;
}
.mobile-search-form {
margin-bottom: 30px;
}
.mobile-search-form form {
display: flex;
gap: 10px;
}
.mobile-search-form input {
flex: 1;
padding: 12px;
border: 1px solid var(--border);
border-radius: 25px;
background: var(--bg-secondary);
color: var(--text-primary);
}
.mobile-search-form button {
padding: 12px 18px;
background: linear-gradient(135deg, #6366f1, #ec4899);
border: none;
border-radius: 25px;
cursor: pointer;
}
.mobile-menu, .mobile-cat-menu {
list-style: none;
}
.mobile-menu li, .mobile-cat-menu li {
margin-bottom: 15px;
}
.mobile-menu a, .mobile-cat-menu a {
text-decoration: none;
color: var(--text-primary);
font-size: 16px;
display: block;
padding: 8px 0;
transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-cat-menu a:hover {
color: #6366f1;
}
.mobile-theme-switch {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid var(--border);
}
.mobile-dark-toggle {
width: 50px;
height: 26px;
background: var(--bg-tertiary);
border-radius: 50px;
border: none;
cursor: pointer;
position: relative;
}
.toggle-slider {
position: absolute;
width: 22px;
height: 22px;
background: #6366f1;
border-radius: 50%;
top: 2px;
left: 3px;
transition: transform 0.3s;
}
.mobile-dark-toggle.active .toggle-slider {
transform: translateX(24px);
} @media (max-width: 768px) {
.header-nav {
display: none;
}
.mobile-toggle {
display: flex !important;
}
.header-container {
gap: 15px;
}
.site-title {
font-size: 18px;
}
.header-tagline {
font-size: 9px;
}
.custom-logo {
height: 40px;
}
.search-wrapper {
padding: 20px;
}
.search-form-header {
flex-direction: column;
}
.search-submit {
padding: 12px;
}
}
@media (min-width: 769px) {
.mobile-toggle {
display: none;
}
} @keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
.search-overlay.active .search-wrapper {
animation: fadeInScale 0.3s ease;
}