/* ============================================
   Header в стиле Studio.site Newspaper
   ============================================ */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: #3a5a7c;
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:focus {
    outline: 2px solid #3a5a7c;
    outline-offset: 2px;
}

/* Header */
.header-newspaper {
    background: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-newspaper__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-newspaper__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.header-newspaper__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: opacity 0.3s ease;
}

.header-newspaper__logo:hover {
    opacity: 0.7;
}

/* Menu */
.header-newspaper__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-newspaper__menu > li {
    position: relative;
}

.header-newspaper__link {
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.header-newspaper__link:hover {
    color: #666;
}

.header-newspaper__link.active {
    color: #1a1a1a;
    font-weight: 600;
}

.header-newspaper__link i.fa-chevron-down {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
}

/* Dropdown */
.header-newspaper__dropdown {
    position: relative;
}

.header-newspaper__dropdown:hover .header-newspaper__link i.fa-chevron-down {
    transform: rotate(180deg);
}

.header-newspaper__dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
}

.header-newspaper__dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    pointer-events: none;
}

.header-newspaper__dropdown:hover .header-newspaper__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.header-newspaper__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
}

.header-newspaper__dropdown-menu li {
    margin: 0;
}

.header-newspaper__dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-newspaper__dropdown-menu a:hover {
    background: #f8f8f8;
    color: #1a1a1a;
}

/* Social Icons */
.header-newspaper__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-newspaper__social-link {
    color: #999;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.header-newspaper__social-link:hover {
    color: #1a1a1a;
}

/* Mobile Menu Button */
.header-newspaper__mobile-btn {
    display: none;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   Footer в стиле Newspaper
   ============================================ */

.footer-newspaper {
    background: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-newspaper .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-newspaper__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newspaper__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-newspaper__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0 0 18px;
}

.footer-newspaper__social {
    display: flex;
    gap: 10px;
}

.footer-newspaper__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.footer-newspaper__social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-newspaper__links h4,
.footer-newspaper__contact h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 16px;
    color: #ffffff;
}

.footer-newspaper__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-newspaper__links li {
    margin-bottom: 10px;
}

.footer-newspaper__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s ease;
}

.footer-newspaper__links a:hover {
    color: #ffffff;
}

.footer-newspaper__contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.footer-newspaper__bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-newspaper__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .header-newspaper__menu {
        gap: 1.5rem;
    }
    
    .header-newspaper__link {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .header-newspaper__container {
        padding: 0 15px;
    }
    
    .header-newspaper__nav {
        height: 60px;
    }
    
    .header-newspaper__logo {
        font-size: 1.5rem;
    }
    
    .header-newspaper__menu {
        display: none;
    }
    
    .header-newspaper__mobile-btn {
        display: block;
    }
    
    .header-newspaper__social {
        display: none;
    }
    
    /* Footer responsive */
    .footer-newspaper__grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 540px) {
    .footer-newspaper__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-newspaper__social {
        justify-content: flex-start;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 1.125rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu__close:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.mobile-menu__nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu__nav > ul > li > a,
.mobile-menu__dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu__nav > ul > li > a:hover,
.mobile-menu__dropdown-btn:hover {
    background: #f8f8f8;
    color: #3a5a7c;
}

.mobile-menu__nav > ul > li > a.active {
    color: #3a5a7c;
    font-weight: 600;
}

.mobile-menu__dropdown-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-menu__dropdown.active .mobile-menu__dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-menu__dropdown-content {
    display: none;
    background: #f8f8f8;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu__dropdown.active .mobile-menu__dropdown-content {
    display: block;
}

.mobile-menu__dropdown-content a {
    display: block;
    padding: 12px 20px 12px 35px;
    font-size: 0.9375rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu__dropdown-content a:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.mobile-menu__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #555;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu__social a:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   Breadcrumbs Component
   ============================================ */

.breadcrumbs {
    background: #f8f8f8;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    color: #ccc;
}

.breadcrumbs__link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
    color: #1a1a1a;
}

.breadcrumbs__current {
    color: #1a1a1a;
    font-weight: 500;
}

/* ============================================
   Focus Styles for Accessibility
   ============================================ */

*:focus-visible {
    outline: 2px solid #3a5a7c;
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   Loading Skeleton
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text:last-child {
    width: 70%;
}

.skeleton-title {
    height: 1.5em;
    width: 60%;
    margin-bottom: 1em;
}

.skeleton-image {
    aspect-ratio: 16/9;
    width: 100%;
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* ============================================
   Micro Animations
   ============================================ */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Stagger animation for lists */
.animate-stagger > * {
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Button ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-ripple:active::after {
    width: 200px;
    height: 200px;
}

/* Image hover zoom */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Link underline animation */
.link-animated {
    position: relative;
    text-decoration: none;
}

.link-animated::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.link-animated:hover::after {
    width: 100%;
}

/* Pulse animation for notifications */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .skeleton {
        animation: none;
        background: #f0f0f0;
    }
}

/* ============================================
   Toast Notifications
   ============================================ */

#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast--visible {
    opacity: 1;
    transform: translateX(0);
}

.toast--hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast__icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.toast__message {
    flex: 1;
    line-height: 1.4;
}

.toast__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    margin: -4px;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.toast__close:hover {
    color: #ffffff;
}

/* Toast Types */
.toast--success {
    background: #10b981;
}

.toast--error {
    background: #ef4444;
}

.toast--warning {
    background: #f59e0b;
}

.toast--info {
    background: #3b82f6;
}

@media (max-width: 540px) {
    #toast-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
    
    .toast {
        transform: translateY(100%);
    }
    
    .toast--visible {
        transform: translateY(0);
    }
    
    @keyframes toastSlideOut {
        to {
            opacity: 0;
            transform: translateY(100%);
        }
    }
}

/* ============================================
   Reading Progress Bar
   ============================================ */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a5a7c, #5a8abc);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ============================================
   Form Improvements
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-label--required::after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #3a5a7c;
    box-shadow: 0 0 0 3px rgba(58, 90, 124, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input.invalid,
.form-textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #10b981;
}

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

.form-help {
    font-size: 0.8125rem;
    color: #888;
    margin-top: 6px;
}

.form-error {
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-error i {
    font-size: 0.75rem;
}

/* Autofocus ring */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
    outline: 2px solid #3a5a7c;
    outline-offset: 2px;
}

/* ============================================
   Toast Notifications
   ============================================ */

#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast--visible {
    opacity: 1;
    transform: translateX(0);
}

.toast--hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast__icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.toast__message {
    flex: 1;
    line-height: 1.4;
}

.toast__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    margin: -4px;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.toast__close:hover {
    color: #ffffff;
}

/* Toast Types */
.toast--success { background: #10b981; }
.toast--error { background: #ef4444; }
.toast--warning { background: #f59e0b; }
.toast--info { background: #3b82f6; }

@media (max-width: 540px) {
    #toast-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
    
    .toast {
        transform: translateY(100%);
    }
    
    .toast--visible {
        transform: translateY(0);
    }
}

/* ============================================
   Form Improvements
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-label--required::after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #3a5a7c;
    box-shadow: 0 0 0 3px rgba(58, 90, 124, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input.invalid,
.form-textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #10b981;
}

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

.form-help {
    font-size: 0.8125rem;
    color: #888;
    margin-top: 6px;
}

.form-error {
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
    outline: 2px solid #3a5a7c;
    outline-offset: 2px;
}
