/* about.css - About Page Specific Styles */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.3;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #7a7a7a;
    margin-bottom: 2.5rem;
display: flex;
justify-content: center;
align-items: center;
max-width: 1000px;
text-align: center;
    letter-spacing: 1.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 1.5rem 0; */
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2a2a2a;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #2a2a2a;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2a2a2a;
}

.breadscrub {
    padding: 10px 80px;
    text-decoration: none;
    /* background-color: #fafafa; */
}

.breadscrub a {
    color: #000;
}

/* Page Hero */
.page-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s ease;
}

.page-hero:hover .page-hero-image {
    transform: scale(1.05);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Container 1: Founders Section */
.founders-section {
    padding: 100px 0;
    background-color: #fff;
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founders-image {
    position: relative;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founders-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-wrapper:hover .founders-main-image {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.image-wrapper:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

.founders-quote {
    padding-left: 20px;
    border-left: 2px solid #eaeaea;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #2a2a2a;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #eaeaea;
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

.quote-author h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.quote-author p {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 300;
}

/* beginning */
.beginning {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.description-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2a2a2a;
}
.beginning h3{
    display: flex;
    justify-content: center;
    align-items: center;
}
.beginning p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}
    
/* Container 2: Brand Story Section */
.brand-story-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.brand-story-section .container {
    max-width: 1000px;
    /* Reduced from 1200px for better centering */
    margin: 0 auto;
    padding: 0 20px;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    text-align: center;
}

.story-subtitle {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.story-content {
    /* display: grid; */
    /* grid-template-columns: 2fr 1fr; */
    gap: 60px;
}

.story-paragraph {
    margin-bottom: 40px;
}

.paragraph-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2a2a2a;
    position: relative;
    padding-left: 20px;
}

.paragraph-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background-color: #2a2a2a;
}

.story-paragraph p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-weight: 300;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #7a7a7a;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container 3: Craftsmanship Video Section */
.craftsmanship-section {
    padding: 50px 0;
    background-color: #fff;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 60px;
}

.craftsmanship-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.craftsmanship-subtitle {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    margin-bottom: 50px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder video {
    width: 100%;
    height: 100%;
}

.placeholder-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* transition: background-color 0.3s ease; */
}



.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    color: #2a2a2a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}

.play-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.video-player {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #000;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.video-close,
.video-fullscreen {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-close:hover,
.video-fullscreen:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.video-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.description-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.video-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
}

.craftsmanship-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.detail-item {
    padding: 25px;
    background-color: #fafafa;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.detail-item p {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.section-header {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.section-subtitle{
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.member-title {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.member-contact a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.member-contact a:hover {
    color: #000;
    text-decoration: underline;
}

/* Values Section */
.values-section {
    padding: 50px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fafafa;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.value-description {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #42403e9c;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== SECTION 3 : CONTACT ===== */
.contact {
    padding: 110px 0px;
    display: flex;
    background: #ddebecc2;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('design2.avif')cover;
    /* background-color: #7565522d; */

}

.contact h2 {
    justify-content: center;
    font-size: 52px;
    margin-bottom: 20px;
    font-family: Cormorant Garamond;
    font-weight: 400;
}

.contact p {
    font-size: 18px;
    color: #555;
    max-width: 520px;
    line-height: 1.8;
}

.contact a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}


.contact a:hover {
    background: #1a1a1a;
    color: #fff;
}


/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 80px 150px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand */
.footer-logo {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
    max-width: 320px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5c5c5;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    border-color: #fff;
    transform: translateY(-4px);
}

/* Links */
.footer-links {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.footer-column h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* Responsive Styles */
@media (max-width: 1199px) {



    .story-content {
        gap: 40px;
    }

    .founders-content {
        gap: 40px;
    }

    .brand-story-section .container {
        max-width: 900px;
    }

    .story-highlights {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .logo img {
        margin-left: 0px;
    }

    .container {
        padding: 0 30px;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .founders-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founders-quote {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .craftsmanship-details {
        grid-template-columns: 1fr;
    }

    .placeholder-image,
    .video-player {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 15px 0px;
    }
}

@media (max-width: 767px) {

    .mobile-menu-btn {
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgb(255, 255, 255);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        z-index: 1000;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 500;
        color: #1a1a1a;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .page-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .story-title,
    .craftsmanship-title,
    .section-title,
    .cta-title {
        font-size: 2rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .placeholder-image,
    .video-player {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .play-text {
        font-size: 1rem;
    }

    .contact {
        height: 300px;
        font-size: 8px;
    }

    .contact-container h2 {
        font-size: 30px;
    }

    .contact-container p {
        font-size: 13px;
    }

    .contact-container a {
        font-size: 10px;
    }

    .footer {
        padding: 15px 0px;
    }

    .footer-links {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .page-hero {
        height: 40vh;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .founders-section,
    .brand-story-section,
    .craftsmanship-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 60px 0;
    }

    .stat-card {
        flex: 0 0 100%;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .story-title,
    .craftsmanship-title,
    .section-title,
    .cta-title {
        font-size: 1.6rem;
    }

    .video-controls {
        top: 10px;
        right: 10px;
    }

    .video-close,
    .video-fullscreen {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .placeholder-image,
    .video-player {
        height: 250px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}