/* ===========================================
   TechConcepts.org — Main Stylesheet
   Extracted from monolith index.html
   =========================================== */

/* --- CSS Variables --- */
:root {
    --primary: #000;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --white: #fff;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Utilities --- */
.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-alt {
    background: var(--light-gray);
}

.section-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

/* --- Navigation --- */
nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 24px;
    line-height: 1;
    z-index: 101;
}

/* --- Language Switcher --- */
.lang-switcher {
    position: relative;
    margin-right: 16px;
}

.lang-btn {
    background: var(--light-gray);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn:hover {
    background: var(--border);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 200;
    margin-top: 4px;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
}

.lang-option:hover {
    background: var(--light-gray);
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* RTL support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .footer-links { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-option { text-align: right; }
[dir="rtl"] .hero { text-align: right; }
[dir="rtl"] .faq-item { text-align: right; }
[dir="rtl"] .product-card { text-align: right; }
[dir="rtl"] .service-card { text-align: right; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--border);
}

/* --- Hero --- */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons,
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--gray);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 12px;
}

.service-card .price-range,
.service-card .service-price {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

.service-card .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

/* --- Proof / Stats Bar --- */
.proof {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.proof h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.proof-item .number,
.proof-stat .proof-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
}

.proof-item p,
.proof-stat .proof-label {
    font-size: 14px;
    opacity: 0.8;
}

.proof-stat .proof-context {
    font-size: 12px;
    opacity: 0.6;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* --- Pricing Cards --- */
.pricing {
    padding: 100px 0;
}

.pricing h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.pricing .subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 18px;
}

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

.pricing-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: var(--light-gray);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.timeline {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li::before {
    content: "\2713";
    color: var(--success);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* --- Process Steps --- */
.process {
    padding: 100px 0;
}

.process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* --- About Section --- */
.about {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-photo-img {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-text .title {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 16px;
}

.credentials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.credential {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid var(--border);
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    font-size: 13px;
    color: var(--gray);
}

/* --- Case Studies --- */
.case-studies {
    padding: 100px 0;
    background: var(--light-gray);
}

.case-studies h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.case-study {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.case-header {
    margin-bottom: 32px;
}

.case-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-header h3 {
    font-size: 24px;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.case-grid h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.case-grid p {
    font-size: 15px;
    line-height: 1.7;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric {
    text-align: center;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.metric-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
}

/* --- Blog --- */
.blog {
    padding: 80px 0;
    background: #fff;
}

.blog h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
}

.blog-article + .blog-article {
    margin-top: 32px;
}

.blog-article h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.blog-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.blog-article h4 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--primary);
}

.blog-article p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
}

.blog-article code {
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
}

.blog-article pre {
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
    font-size: 13px;
    line-height: 1.5;
}

.blog-article ul {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-article li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.blog-stat {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.blog-stat .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--success);
}

.blog-stat .label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
}

/* --- Blog Cards (listing pages) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--primary);
    transition: border-color 0.2s;
}

.blog-card:hover {
    border-color: var(--primary);
}

.blog-card .tag {
    display: inline-block;
    background: var(--light-gray);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card .read-more {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray);
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.final-cta .btn-primary {
    background: #fff;
    color: var(--primary);
}

.final-cta .btn-primary:hover {
    background: var(--light-gray);
}

/* --- Newsletter --- */
.newsletter {
    padding: 80px 0;
    background: var(--light-gray);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--gray);
}

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

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    width: 260px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    white-space: nowrap;
}

/* --- Products Links --- */
.products {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.products h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray);
}

.product-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-link {
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.product-link:hover {
    color: var(--accent);
}

/* --- Product Cards (products page) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card .platform {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Tools / Lead Magnets --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
    text-align: center;
}

.tool-card .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tool-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-card .tool-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.coming-soon {
    opacity: 0.5;
    cursor: default;
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-info {
    font-size: 14px;
    color: var(--gray);
}

/* --- Deliverables Checklist (service pages) --- */
.deliverables {
    list-style: none;
    padding: 0;
}

.deliverables li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliverables li::before {
    content: "\2713";
    color: var(--success);
    font-weight: bold;
}

/* --- Content Upgrades (blog lead magnets) --- */
.content-upgrade {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 28px 24px;
    margin: 40px 0;
    text-align: center;
}

.content-upgrade h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.content-upgrade p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-upgrade form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.content-upgrade input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
}

.content-upgrade input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.content-upgrade button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.content-upgrade button:hover {
    background: #333;
}

.content-upgrade .btn {
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 600px) {
    .content-upgrade form {
        flex-direction: column;
        max-width: 100%;
    }

    .content-upgrade input[type="email"],
    .content-upgrade button {
        width: 100%;
    }
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 900px) {
    .hero h1 {
        font-size: 40px;
    }

    .services-grid,
    .pricing-grid,
    .proof-grid,
    .blog-grid,
    .product-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo-img {
        margin: 0 auto;
    }

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

    .mobile-menu-btn {
        display: block !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .btn {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .case-metrics {
        grid-template-columns: 1fr 1fr;
    }
}
