/* ===== Page-Specific Styles ===== */

/* ===== Page Hero ===== */
.page-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-cream) 100%);
    overflow: hidden;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.page-hero .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* AI Visual */
.page-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
}

.ai-pulse {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.ai-icon {
    font-size: 5rem;
    color: white;
}

.ai-waves {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.ai-waves span {
    width: 8px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.ai-waves span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-waves span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: var(--background-cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Product Features ===== */
.product-features {
    padding: 100px 0;
    background: var(--background-cream);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.feature-content>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-bullets li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

.chat-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-bubble.ai {
    background: var(--background-cream);
    border-bottom-left-radius: 4px;
    margin-right: 40px;
}

.chat-bubble.caller {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: 40px;
}

.calendar-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    width: 100%;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.calendar-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slot {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    text-align: center;
}

.slot.available {
    background: #dcfce7;
    color: #16a34a;
}

.slot.booked {
    background: var(--background-cream);
    color: var(--text-muted);
    text-decoration: line-through;
}

.lead-card-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    width: 100%;
}

.lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lead-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.lead-badge.hot {
    background: #fef3c7;
    color: #d97706;
}

.lead-score {
    font-weight: 600;
    color: var(--primary-color);
}

.lead-details p {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.lead-details p:last-child {
    border-bottom: none;
}

/* ===== Pricing Preview ===== */
.pricing-preview {
    padding: 100px 0;
    background: var(--background);
}

.pricing-preview-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
}

.pricing-preview-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.pricing-preview-content>p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.pricing-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-highlights li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.pricing-preview-cta {
    text-align: center;
}

.price-display {
    margin-bottom: 24px;
}

.price-currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.price-amount {
    font-size: 5rem;
    font-weight: 800;
    color: white;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--background-cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Industry Pages ===== */
.industry-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-cream) 100%);
}

.industry-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.industry-icon {
    font-size: 8rem;
    text-align: center;
}

.use-cases {
    padding: 100px 0;
    background: var(--background);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.use-case-card {
    background: var(--background-cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Testimonial Spotlight ===== */
.testimonial-spotlight {
    padding: 100px 0;
    background: var(--background-cream);
}

.spotlight-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.spotlight-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.6;
}

.spotlight-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.spotlight-avatar {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.spotlight-info {
    text-align: left;
}

.spotlight-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.spotlight-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Stats Row ===== */
.stats-row {
    padding: 60px 0;
    background: var(--secondary-color);
}

.stats-row .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-row .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stats-row .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Blog/Resources Pages ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--background-cream);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Contact Form ===== */
.contact-section {
    padding: 100px 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--background-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-method-text strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-method-text span {
    color: var(--text-light);
}

.contact-form {
    background: var(--background-cream);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== Login Page ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: var(--background-cream);
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header .logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.auth-header p {
    color: var(--text-light);
}

.auth-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.social-btn:hover {
    border-color: var(--primary-color);
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.forgot-password {
    text-align: right;
    margin-top: -16px;
    margin-bottom: 24px;
}

.forgot-password a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* ===== Team Grid ===== */
.team-section {
    padding: 100px 0;
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.team-card .role {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: var(--background-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== Careers Page ===== */
.jobs-section {
    padding: 100px 0;
    background: var(--background);
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 32px;
    background: var(--background-cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Help Center ===== */
.help-search {
    padding: 60px 0;
    background: var(--background-cream);
    text-align: center;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 18px 24px;
    padding-left: 56px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(198, 65, 16, 0.1);
}

.search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-muted);
}

.help-categories {
    padding: 80px 0;
    background: var(--background);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--background-cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.article-count {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== API Docs ===== */
.docs-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 120px 0 60px;
    min-height: 100vh;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.docs-nav {
    background: var(--background-cream);
    border-radius: var(--radius-md);
    padding: 24px;
}

.docs-nav h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.docs-nav ul {
    margin-bottom: 24px;
}

.docs-nav li {
    margin-bottom: 8px;
}

.docs-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
}

.docs-nav a:hover,
.docs-nav a.active {
    background: white;
    color: var(--primary-color);
}

.docs-content {
    max-width: 800px;
}

.docs-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.docs-content>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.code-block {
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
    overflow-x: auto;
}

.code-block pre {
    color: #e5e5e5;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-block .comment {
    color: #6b7280;
}

.code-block .string {
    color: #a5d6ff;
}

.code-block .keyword {
    color: #ff7b72;
}

/* ===== Responsive Styles for Pages ===== */
@media (max-width: 1024px) {

    .page-hero .container,
    .industry-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .page-hero .hero-ctas {
        justify-content: center;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .pricing-preview-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .docs-layout {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid,
    .blog-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}