/* Sirius Blog Theme - Light Theme Exact Copy */

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
    background-color: white;
    color: #334155;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sirius CSS Framework Classes */
.z-1000 {
    z-index: 1000;
}
.fixed {
    position: fixed;
}
.left-0 {
    left: 0;
}
.top-0 {
    top: 0;
}
.h-\[78px\] {
    height: 78px;
}
.w-full {
    width: 100%;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.bg-white {
    background-color: white;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.pl-4 {
    padding-left: 1rem;
}
.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.gap-16 {
    gap: 4rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-1 {
    gap: 0.25rem;
}
.select-none {
    user-select: none;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.font-bold {
    font-weight: 700;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}
.m-0 {
    margin: 0;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-2\.5 {
    padding: 0.625rem;
}
.mr-4 {
    margin-right: 1rem;
}
.ml-28 {
    margin-left: 7rem;
}
.ml-32 {
    margin-left: 8rem;
}
.-mt-2 {
    margin-top: -0.5rem;
}
.-mt-1 {
    margin-top: -0.25rem;
}
.-top-2 {
    top: -0.5rem;
}
.-right-10 {
    right: -2.5rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.border {
    border-width: 1px;
}
.border-gray-200 {
    border-color: #e5e7eb;
}
.border-gray-100 {
    border-color: #f3f4f6;
}
.border-primary-gray-100 {
    border-color: #f3f4f6;
}
.border-b {
    border-bottom-width: 1px;
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.h-4 {
    height: 1rem;
}
.w-4 {
    width: 1rem;
}
.h-6 {
    height: 1.5rem;
}
.w-6 {
    width: 1.5rem;
}
.h-8 {
    height: 2rem;
}
.w-42 {
    width: 10.5rem;
}
.h-10 {
    height: 2.5rem;
}
.w-32 {
    width: 8rem;
}
.w-\[216px\] {
    width: 216px;
}
.w-32 {
    width: 8rem;
}
.l-\[44px\] {
    left: 44px;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.top-full {
    top: 100%;
}
.mt-1 {
    margin-top: 0.25rem;
}
.block {
    display: block;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.hidden {
    display: none;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}
.pt-4 {
    padding-top: 1rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-200 {
    transition-duration: 200ms;
}
.transform-gpu {
    transform: translateZ(0);
}
.will-change-transform {
    will-change: transform;
}

/* Color Classes */
.text-primary-gray-700 {
    color: #374151;
}
.text-gray-800 {
    color: #1f2937;
}
.text-black {
    color: #000000;
}
.text-white {
    color: #ffffff;
}
.bg-primary-blue {
    background-color: #3b82f6;
}
.bg-primary-gray-700 {
    background-color: #374151;
}
.bg-gray-100 {
    background-color: #f3f4f6;
}
.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

/* Responsive Classes */
.xs\:h-8 {
    height: 2rem;
}
.xs\:w-42 {
    width: 10.5rem;
}
.xs\:-mt-1 {
    margin-top: -0.25rem;
}

.md2\:h-10 {
    height: 2.5rem;
}
.md2\:w-32 {
    width: 8rem;
}
.md2\:-mt-2 {
    margin-top: -0.5rem;
}

/* Responsive breakpoints for lt-md2 and md2 */
.lt-md2\:hidden {
    display: none;
}
.md2\:hidden {
    display: block;
}

@media (min-width: 768px) {
    .lt-md2\:hidden {
        display: flex;
    }
    .md2\:hidden {
        display: none;
    }
    .md\:ml-128 {
        margin-left: 32rem;
    }
}

@media (min-width: 640px) {
    .sm\:ml-32 {
        margin-left: 8rem;
    }
}

/* Group hover effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Header Styles - Exact Copy of Sirius */
header {
    border-bottom: 1px solid #e2e8f0;
}

/* Mobile Navigation Styles */
.mobile-nav-menu {
    z-index: 999;
}

/* Button hover effects */
a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

/* Additional utility classes needed for Sirius */
.cursor-pointer {
    cursor: pointer;
}
.transition-all {
    transition: all 0.2s ease;
}

/* Content spacing for fixed headers */
.hero-section {
    margin-top: 80px; /* Standard header height */
    padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
    .hero-section {
        margin-top: 80px; /* Desktop header height */
    }
}

@media (max-width: 767px) {
    .hero-section {
        margin-top: 80px; /* Mobile header height */
    }
}

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

.hero-banner {
    margin-bottom: 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    position: relative;
}

.banner-close {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 9999px;
    padding: 0.125rem;
    position: relative;
    cursor: pointer;
}

.badge-text {
    background-color: #334155;
    color: white;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-content {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.badge-arrow {
    margin-right: 0.75rem;
    color: #374151;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 1.06;
    color: #334155;
    margin-bottom: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-cta {
    background-color: #334155;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.hero-cta:hover {
    background-color: #475569;
}

/* Posts Section */
.posts-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

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

.posts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.posts-title {
    font-size: 3rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
}

.posts-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Post Cards */
.post-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .card-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #4a90e2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.tag:hover {
    background-color: #bfdbfe;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #4a90e2;
}

.card-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar,
.author-avatar-placeholder {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.author-avatar {
    object-fit: cover;
}

.author-avatar-placeholder {
    background-color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

.post-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.reading-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn {
    background-color: #4a90e2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pagination-btn:hover {
    background-color: #3b82f6;
}

.pagination-info {
    color: #6b7280;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 78px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-right {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

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

    .posts-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer - Exact copy of Sirius.expert */

/* Ghost Specific Styles */
.kg-width-wide {
    width: fit-content;
}

.kg-width-full {
    max-width: 100vw;
}

/* Utilities */
.font-sans {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.hidden {
    display: none;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Footer specific classes */
.border-\[\#27272A\] {
    border-color: #27272a;
}
.bg-\[\#1D1F20\] {
    background-color: #1d1f20;
}
.text-\[\#9098A0\] {
    color: #9098a0;
}
.hover\:text-blue-400:hover {
    color: #60a5fa;
}
.max-w-\[1440px\] {
    max-width: 1440px;
}
.md2\:px-30 {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
}
.lt-sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.xs\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.lt-sm\:gap-8 {
    gap: 2rem;
}
.lt-sm\:gap-6 {
    gap: 1.5rem;
}
.xs\:gap-4 {
    gap: 1rem;
}
.lt-sm\:text-center {
    text-align: center;
}
.lt-sm\:order-3 {
    order: 3;
}
.order-reverse {
    order: -1;
}
.xs\:flex {
    display: flex;
}
.pt-5 {
    padding-top: 1.25rem;
}
.pb-10 {
    padding-bottom: 2.5rem;
}
.pt-2 {
    padding-top: 0.5rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.flex-col {
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.gap-4 {
    gap: 1rem;
}
.border-t {
    border-top-width: 1px;
}

/* Responsive classes for footer */
@media (max-width: 640px) {
    .lt-sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .lt-sm\:gap-8 {
        gap: 2rem;
    }
    .lt-sm\:gap-6 {
        gap: 1.5rem;
    }
    .lt-sm\:text-center {
        text-align: center;
    }
    .lt-sm\:order-3 {
        order: 3;
    }
}

@media (min-width: 475px) {
    .xs\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .xs\:gap-4 {
        gap: 1rem;
    }
    .xs\:flex {
        display: flex;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:block {
        display: block;
    }
    .md\:hidden {
        display: none;
    }
    .md2\:px-30 {
        padding-left: 7.5rem;
        padding-right: 7.5rem;
    }
    .md2\:hidden {
        display: none;
    }
}

/* Header Design System Classes */
.w-\[1440px\] {
    width: 1440px;
    left: 50%;
    transform: translateX(-50%);
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.self-stretch {
    align-self: stretch;
}
.inline-flex {
    display: inline-flex;
}
.justify-start {
    justify-content: flex-start;
}
.items-start {
    align-items: flex-start;
}
.text-zinc-900 {
    color: #18181b;
}
.text-neutral-700 {
    color: #404040;
}
.font-\[\'Inter\'\] {
    font-family: "Inter", sans-serif;
}
.leading-normal {
    line-height: 1.5;
}
.outline {
    outline-width: 1px;
}
.outline-1 {
    outline-width: 1px;
}
.outline-offset-\[-1px\] {
    outline-offset: -1px;
}
.outline-gray-100 {
    outline-color: #f3f4f6;
}
.outline-gray-600 {
    outline-color: #4b5563;
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-white\/80 {
    --tw-gradient-from: rgb(255 255 255 / 0.8);
    --tw-gradient-to: rgb(255 255 255 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-white\/60 {
    --tw-gradient-to: rgb(255 255 255 / 0.6);
}
.content-end {
    align-content: flex-end;
}
.flex-wrap {
    flex-wrap: wrap;
}
.overflow-hidden {
    overflow: hidden;
}
.w-96 {
    width: 24rem;
}
.h-28 {
    height: 7rem;
}
.items-end {
    align-items: flex-end;
}
.z-40 {
    z-index: 40;
}
.z-50 {
    z-index: 50;
}
.w-32 {
    width: 8rem;
}
.gap-1\.5 {
    gap: 0.375rem;
}
.h-5 {
    height: 1.25rem;
}
.w-auto {
    width: auto;
}
.justify-center {
    justify-content: center;
}
.text-center {
    text-align: center;
}

/* Additional classes for simplified header */
.max-w-\[1440px\] {
    max-width: 1440px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.hover\:text-blue-600:hover {
    color: #2563eb;
}
.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}
.hover\:bg-zinc-800:hover {
    background-color: #27272a;
}
.transition-colors {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.border-t {
    border-top-width: 1px;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.h-6 {
    height: 1.5rem;
}
.h-8 {
    height: 2rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.p-2 {
    padding: 0.5rem;
}

/* Additional exact classes for the header design */
.gap-2\.5 {
    gap: 0.625rem;
}
.gap-16 {
    gap: 4rem;
}
.gap-5 {
    gap: 1.25rem;
}
.h-\[25px\] {
    height: 25px;
}
.self-stretch {
    align-self: stretch;
}
.leading-normal {
    line-height: 1.5;
}
.font-normal {
    font-weight: 400;
}
.top-\[72px\] {
    top: 72px;
}

/* Синие цвета для кнопки */
.bg-blue-600 {
    background-color: #2563eb;
}
.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}
.max-w-none {
    max-width: none;
}

/* Убираем underline со всех ссылок */
.no-underline {
    text-decoration: none !important;
}
a {
    text-decoration: none !important;
}

.h-10 {
    height: 2.5rem;
}
.w-32 {
    width: 8rem;
}
.w-\[216px\] {
    width: 216px;
}
.bg-gray-700 {
    background-color: #374151;
}
.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}
.text-gray-700 {
    color: #374151;
}
.hover\:text-gray-900:hover {
    color: #111827;
}
.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

/* Primary цвета как в оригинале */
.text-primary-gray-700 {
    color: #374151;
}
.bg-primary-gray-700 {
    background-color: #374151;
}
.bg-primary-blue {
    background-color: #2563eb;
}
.z-1000 {
    z-index: 1000;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.select-none {
    user-select: none;
}
.lt-md2\:hidden {
    display: flex;
}
.l-\[44px\] {
    left: 44px;
}
.xs\:h-8 {
    height: 2rem;
}
.xs\:w-42 {
    width: 10.5rem;
}
.xs\:-mt-1 {
    margin-top: -0.25rem;
}
.md2\:h-10 {
    height: 2.5rem;
}
.md2\:w-32 {
    width: 8rem;
}
.md2\:-mt-2 {
    margin-top: -0.5rem;
}
.transform-gpu {
    transform: translateZ(0);
}
.will-change-transform {
    will-change: transform;
}
.duration-200 {
    transition-duration: 200ms;
}
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Дополнительные классы для точного дизайна */
.outline {
    outline-style: solid;
    outline-width: 1px;
}
.outline-1 {
    outline-width: 1px;
}
.outline-offset-\[-1px\] {
    outline-offset: -1px;
}
.outline-gray-100 {
    outline-color: #f3f4f6;
    outline-style: solid;
}
.outline-gray-600 {
    outline-color: #4b5563;
    outline-style: solid;
}
.text-neutral-700 {
    color: #404040;
}
.bg-zinc-900 {
    background-color: #18181b;
}
.text-zinc-900 {
    color: #18181b;
}
.self-stretch {
    align-self: stretch;
}
.inline-flex {
    display: inline-flex;
}
.w-\[1440px\] {
    width: 1440px;
}
.justify-start {
    justify-content: flex-start;
}
.items-start {
    align-items: flex-start;
}
.leading-normal {
    line-height: 1.5;
}
.font-\[\'Inter\'\] {
    font-family: "Inter", sans-serif;
}

/* Мобильная адаптация */
@media (max-width: 1000px) {
    .lt-md2\:hidden {
        display: none !important;
    }
    .md2\:hidden {
        display: block !important;
    }
}

@media (min-width: 1001px) {
    .md2\:hidden {
        display: none !important;
    }
    .lt-md2\:hidden {
        display: flex !important;
    }
}

.bg-primary-dark {
    background-color: #1a1a1a;
}
.bg-black {
    background-color: #000000;
}
.border-primary-gray-100 {
    border-color: #f3f4f6;
}
.border-gray-700 {
    border-color: #374151;
}
.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2);
}
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.border {
    border-width: 1px;
    border-style: solid;
}
.border-gray-200 {
    border-color: #e5e7eb;
}
.text-lg {
    font-size: 1.125rem;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.sm\:ml-32 {
    margin-left: 8rem;
}
.xs\:w-42 {
    width: 10.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

/* Force-hidden utility to override responsive toggles */
.hidden {
    display: none !important;
}
