/* style.css */

/* --- CSS Custom Properties (Variables) for Colors --- */
:root {
    --color-opsell-black: #000000;
    --color-opsell-white: #FFFFFF;
    --color-opsell-grey-50: #F8F8F8;   /* Very light grey */
    --color-opsell-grey-100: #EFEFEF;  /* Light grey */
    --color-opsell-grey-300: #CCCCCC;  /* Medium-light grey */
    --color-opsell-grey-600: #666666;  /* Darker grey for secondary text */
    --color-opsell-grey-800: #333333;  /* Near-black for primary text */
}

/* --- Base HTML & Body Styles --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Inter, sans-serif;
    color: var(--color-opsell-grey-800);
    background-color: var(--color-opsell-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    line-height: 1.5; /* Default line height for better readability */
}

/* --- Reusable Layout Components --- */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 equivalent */
    padding-right: 1rem; /* px-4 equivalent */
}

.section-padding {
    padding-top: 3rem; /* py-20 equivalent */
    padding-bottom: 3rem; /* py-20 equivalent */
}

@media (min-width: 768px) { /* md breakpoint */
    .section-padding {
        padding-top: 5rem; /* py-20 equivalent */
        padding-bottom: 5rem; /* py-20 equivalent */    
    }
}

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

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* font-bold */
    color: var(--color-opsell-black);
    line-height: 1.2;
}

.hero-headline {
    font-size: 1.75rem; /* text-4xl */
    margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 768px) { /* md breakpoint */
    .hero-headline {
        font-size: 2.5rem; /* md:text-6xl */
        margin-top: 3.0rem;
    }
}

.hero-subheadline {
    font-size: 1rem; /* text-lg */
    color: var(--color-opsell-black);
    margin-bottom: 2rem; /* mb-8 */
}

@media (min-width: 768px) { /* md breakpoint */
    .hero-subheadline {
        max-width: 600px;
        font-size: 1rem; /* md:text-xl */
        color: var(--color-opsell-black);
        margin: 1rem auto 2rem;
    }
}

.section-headline {
    font-size: 1.5rem; /* text-3xl */
    margin-bottom: 1rem; /* mb-6 */
    margin-top: 0rem;
}

@media (min-width: 768px) { /* md breakpoint */
    .section-headline {
        font-size: 2rem; /* md:text-5xl */
        
    }
}

.section-subheadline {
    font-size: 0.9rem; /* text-lg */
    color: var(--color-opsell-black);
    margin: 1rem auto 2rem;
    max-width: 750px; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { /* md breakpoint */
    .section-subheadline {
        font-size: 0.9rem; /* md:text-xl */

    }
}

/* Card Titles */
.card-title {
    font-size: 0.8rem; /* text-xl */
    font-weight: 400; /* font-semibold */
    color: var(--color-opsell-grey-600);
    margin-top: 0px
}
@media (min-width: 768px) { /* md breakpoint */
    .card-title {
        font-size: 0.8rem; /* md:text-2xl */
    }
}

.old-way-card .comparison-card-title {
    font-size: 1rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin: 0rem 0rem 1rem; /* mb-6 */
    text-align: left;
}
@media (min-width: 768px) { /* md breakpoint */
    .old-way-card .comparison-card-title {
        font-size: 1rem; /* md:text-3xl */
    }
}

.opsell-way-card .comparison-card-title {
    font-size: 1rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin: 0rem 0rem 1rem; /* mb-6 */
    text-align: left;
    color: var(--color-opsell-white);
}
@media (min-width: 768px) { /* md breakpoint */
    .opsell-way-card .comparison-card-title {
        font-size: 1rem; /* md:text-3xl */
        color: var(--color-opsell-white);
    }
}

/* --- Buttons (CTA and Nav) --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.6rem; /* px-6 py-2 */
    border-radius: 0.3rem; /* rounded-md */
    font-size: 0.85rem; /* base font size */
    font-weight: 600; /* font-medium */
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    transition: all 0.2s ease-in-out;
    text-decoration: none; /* Remove underline for links */
}

.cta-button.primary-cta {
    background-color: var(--color-opsell-black);
    color: var(--color-opsell-white);
    min-width: 7.5rem;
    
}

.cta-button.primary-cta:hover {
    background-color: var(--color-opsell-grey-800);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button.secondary-cta {
    background-color: transparent;
    color: var(--color-opsell-black);
    border: 1px solid var(--color-opsell-grey-300) !important;
    min-width: 7.5rem;
}

.cta-button.secondary-cta:hover {
    border-color: var(--color-opsell-grey-600) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-cta-group .cta-button {
    font-family: inherit;
    padding: 0.6rem 1rem; /* px-8 py-3 */
    font-size: 0.9rem; /* text-lg */
    font-weight: 500;
    border: none;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem; /* space-y-4 */
}
@media (min-width: 640px) { /* sm breakpoint */
    .hero-cta-group {
        flex-direction: row;
        gap: 1rem; /* sm:space-x-4 */
    }
}

.cta-button.large-cta {
    font-family: inherit;
    padding: 0.6rem 1rem; /* px-8 py-3 */
    font-size: 0.9rem; /* text-lg */
    font-weight: 500;
    border: none;
}

/* --- Navbar Specific Styles --- */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem; 
    padding-bottom: 0.75rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo {
    font-size: 1.25rem; /* text-2xl */
    font-weight: 600; /* font-bold */
    color: var(--color-opsell-black);
    text-decoration: none;
    z-index: 20; /* To be above mobile menu toggle */
}

.desktop-nav {
    display: none; /* hidden on mobile */
    align-items: center;
    gap: 0.75rem; /* space-x-6 */
}

.desktop-cta {
    display: none;
    min-width: 5rem !important;
}

@media (min-width: 768px) { /* md breakpoint */
    .desktop-nav {
        display: flex; /* flex on desktop */
    }

    .desktop-cta {
        display: flex;
    }
}

.nav-link {
    color: var(--color-opsell-black);
    text-decoration: none;
    font-weight: 500; 
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.3rem;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    background-color: var(--color-opsell-grey-100);
}

.mobile-menu-toggle {
    display: block; /* block on mobile */
}

@media (min-width: 768px) { /* md breakpoint */
    .mobile-menu-toggle {
        display: none; /* hidden on desktop */
    }
}

.mobile-menu-icon-button {
    display: flex;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-opsell-black);
    border-radius: 0.4rem; /* rounded-md */
    cursor: pointer;
}
.mobile-menu-icon-button:hover {
    background-color: var(--color-opsell-grey-100);
}


/* --- Mobile Menu Overlay --- */
.mobile-icon {
    width: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-opsell-white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 0.7rem;
    right: 1.05rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-opsell-black);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* space-y-6 */
    text-align: center;
}

.mobile-nav-link {
    color: var(--color-opsell-black);
    text-decoration: none;
    font-weight: 500; 
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.3rem;
    transition: all 0.2s ease-in-out;
}
.mobile-nav-link:hover {
    color: var(--color-opsell-grey-600);
}

.mobile-nav-links .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem; /* px-6 py-2 */
    border-radius: 0.3rem; /* rounded-md */
    font-size: 1rem; /* base font size */
    font-weight: 600; /* font-medium */
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    transition: all 0.2s ease-in-out;
    text-decoration: none; /* Remove underline for links */
}

/* --- Hero Section Specific Styles --- */
.hero-section {
    position: relative;
    min-height: calc(100vh - 1000px); /* Adjust for fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-opsell-grey-50);
    padding-top: 5rem!important;
    padding-bottom: 0rem!important;
}

@media (min-width: 640px) { /* sm breakpoint */
    .hero-section {
        padding-top: 6rem!important;
    }
}

.hero-content {
    display: block;
    position: relative;
    z-index: 10;
    max-width: 800px; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
}

.hero-visual-placeholder {
    margin-top: 2rem;
    /*min-height: 12.5rem;*/
    background-color: var(--color-opsell-grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--color-opsell-grey-300);
    border-left: 1px solid var(--color-opsell-grey-300);
    border-right: 1px solid var(--color-opsell-grey-300);
    border-radius: 0.4rem 0.4rem 0rem 0rem;

    /*Placeholder*/
    font-size: 0.9rem;
    color: var(--color-opsell-black);
}

.hero-visual {
    width: 100%;
    border-radius: 0.4rem 0.4rem 0rem 0rem;
}

@media (min-width: 640px) { /* sm breakpoint */
    .hero-visual-placeholder {
        margin-top: 3rem;
        /*min-height: 25rem;*/
    }
}

.hero-visual-image, .compare-visual-image {
    width: 100%;
    max-width: 40rem; /* max-w-4xl */
    height: auto;
    opacity: 0.7; /* opacity-70 */
    border-radius: 0.4rem 0.4rem 0rem 0rem;
}

.compare-visual-image {
    border-radius: 0.4rem !important;
}

/* --- Card Styles (Reused) --- */
.card {
    background-color: var(--color-opsell-white);
    border: 1px solid var(--color-opsell-grey-300);
    border-radius: 0.4rem; /* rounded-xl */
    padding: 1.5rem; /* p-6 */
    display: flex;
    flex-direction: column;
}

.card-hover-effect {
    transition: transform 0.2s ease-out;
}

.card-hover-effect:hover {
    background-color: var(--color-opsell-grey-50);
}

.card-header {
    padding: 0;
}

.card-content {
    padding: 0;
}

.card-solution-overview {
    font-size: 1rem;
    margin-top: 0rem;
    color: var(--color-opsell-black);
    font-weight: 500; /* font-medium */
}

.card-description {
    color: var(--color-opsell-black);
    line-height: 1.5; /* leading-relaxed */
    font-size: 0.85rem; /* base font size */
    margin: 0rem;
}


/* --- Problem-Solution Section --- */
.problem-solution-section {
    background-color: var(--color-opsell-white);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 1rem; /* gap-8 */
    margin: 0rem auto;
}
@media (min-width: 768px) { /* md breakpoint */
    .problem-solution-grid {
        min-width: 75%;
        max-width: 50rem;
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr); /* 2 columns for md and lg */
    }
}


/* --- Product Comparison Section --- */
.product-comparison-section {
    background-color: var(--color-opsell-grey-50);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* gap-8 */
    align-items: center;
    margin: 0rem auto;
    
}
@media (min-width: 768px) { /* md breakpoint */
    .comparison-grid {
        flex-direction: row;
        gap: 1.5rem;
        min-width: 75%;
        max-width: 50rem;
    }
}

.comparison-card {
    padding: 1.5rem;
    flex-shrink: 1; /* Prevent shrinking */
    flex-grow: 1; /* Allow growing */
}

.old-way-card {
    background-color: transparent;
    color: var(--color-opsell-grey-800);
}

.old-way-card:hover {
    background-color: transparent;
    color: var(--color-opsell-grey-800);
}

.opsell-way-card {
    background-color: var(--color-opsell-black);
    color: var(--color-opsell-white)!important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.opsell-way-card:hover {
    background-color: var(--color-opsell-black);
    color: var(--color-opsell-white)!important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.comparison-list {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem; /* space-y-4 */
    font-size: 0.85rem; /* text-lg */
}

.comparison-list-item {
    display: flex;
    align-items: flex-start;
}
.comparison-list-item span { /* For the bullet point */
    margin-right: 0.5rem; /* mr-2 */
    flex-shrink: 0;
}
.old-way-card .comparison-list-item span {
    color: var(--color-opsell-grey-600);
}
.opsell-way-card .comparison-list-item span {
    color: var(--color-opsell-grey-300);
}

.comparison-visual-placeholder {
    margin-top: 1.5rem; /* mt-12 */
    background-color: var(--color-opsell-grey-100);
    border: 1px solid var(--color-opsell-grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem; /* rounded-xl */

    /*Placeholder*/
    font-size: 0.9rem;
    color: var(--color-opsell-black);
}

@media (min-width: 640px) { /* sm breakpoint */
    .comparison-visual-placeholder {
        min-width: 40%;
        max-width: 40rem;
        margin: 1.5rem auto 0rem;
    }
}

.comparison-visual {
    width: 100%;
    border-radius: 0.4rem; 
}

/* --- User Persona Section --- */
.user-persona-section {
    background-color: var(--color-opsell-white);
}

.persona-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 1rem; /* gap-8 */
}
@media (min-width: 768px) { /* md breakpoint */
    .persona-grid {
        min-width: 85%;
        max-width: 50rem;
        margin: 0rem auto;
        grid-template-columns: repeat(2, 1fr); /* 2 columns for md */
        gap: 1.5rem; /* gap-8 */
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .persona-grid {
        min-width: 85%;
        max-width: 50rem;
        margin: 0rem auto;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for lg */
        gap: 1.5rem; /* gap-8 */
    }
}

.persona-card {
    padding: 1.5rem!important;
}

/* --- Social Proof Section --- */
.social-proof-section {
    background-color: var(--color-opsell-grey-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) { /* md breakpoint */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for md */
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for lg */
    }
}

.testimonial-card {
    background-color: var(--color-opsell-white);
}

.testimonial-quote {
    color: var(--color-opsell-grey-800);
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
    margin-bottom: 1rem; /* mb-4 */
}

.testimonial-attribution {
    font-size: 0.875rem; /* text-sm */
    color: var(--color-opsell-grey-600);
    font-weight: 500; /* font-medium */
}

.testimonial-logo {
    height: 1.5rem; /* h-6 */
    margin-top: 0.5rem; /* mt-2 */
    margin-left: auto;
    margin-right: auto;
}

/* --- Team Section --- */
.team-section {
    background-color: var(--color-opsell-grey-50);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 1rem; /* gap-8 */
}
@media (min-width: 768px) { /* md breakpoint */
    .team-grid {
        max-width: 40rem;
        margin: 0rem auto;
        grid-template-columns: repeat(2, 1fr); /* 3 columns for md and up */
        gap: 1.5rem; /* gap-8 */
    }
}

.team-member-card {
    background-color: var(--color-opsell-grey-50);
    text-align: center;
}

.member-photo {
    width: 6rem; /* w-32 */
    height: 6rem; /* h-32 */
    background-color: var(--color-opsell-grey-100);
    border-radius: 50%; /* rounded-full */
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    margin-bottom: 1rem; /* mb-4 */
    border: 1px solid var(--color-opsell-grey-100);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem
}

.member-photo-img {
    width: 100%;
    border-radius: 50%;
}

.member-name {
    font-size: 1rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: var(--color-opsell-black);
    margin-bottom: 0.5rem; /* mb-1 */
}

.member-designation {
    color: var(--color-opsell-black);
    font-size: 0.9rem; /* text-sm */
    margin-top: 0rem;
    margin-bottom: 0.5rem; /* mb-4 */
}

.member-experience {
    color: var(--color-opsell-grey-600);
    font-size: 0.85rem; /* text-sm */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0rem;
}

.experience-tag {
    background-color: var(--color-opsell-white);
    color: var(--color-opsell-grey-600);
    font-size: 0.75rem; /* text-xs */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
    font-weight: 500; /* font-medium */
    border: 1px solid var(--color-opsell-grey-100);
}

/* --- Call to Action Section --- */
.cta-section {
    background-color: var(--color-opsell-white);
}

.cta-contact-links {
    margin-top: 2rem; /* mt-8 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* space-y-4 */
    color: var(--color-opsell-grey-600);
}
@media (min-width: 640px) { /* sm breakpoint */
    .cta-contact-links {
        flex-direction: row;
        gap: 1.5rem; /* sm:space-x-6 */
        margin-top: 2rem; /* mt-8 */
    }
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--color-opsell-grey-600);
    text-decoration: none;
    transition: color 0.2s ease;
    border-radius: 0.4rem; /* rounded-md */
    padding: 0.25rem 0.5rem; /* px-2 py-1 */
}
.contact-link:hover {
    color: var(--color-opsell-black);
    background-color: var(--color-opsell-grey-100);
}

.contact-link .icon {
    height: 1.25rem; /* h-5 */
    width: 1.25rem; /* w-5 */
    margin-right: 0.5rem; /* mr-2 */
}


/* --- Footer Panel --- */
.main-footer {
    background-color: var(--color-opsell-black);
    color: var(--color-opsell-white);
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem; /* py-12 */
}
@media (min-width: 768px) { /* md breakpoint */
    .main-footer {
        padding-top: 4rem; /* md:py-16 */
        padding-bottom: 4rem; /* md:py-16 */
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 2rem; /* gap-8 */
    font-size: 0.875rem; /* text-sm */
}
@media (min-width: 768px) { /* md breakpoint */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for md and up */
    }
}

.footer-brand-info {
    text-align: center;
}
@media (min-width: 768px) { /* md breakpoint */
    .footer-brand-info {
        text-align: left;
        grid-column: span 1; /* md:col-span-1 */
    }
}

.footer-logo {
    font-size: 1.25rem; /* text-2xl */
    font-weight: 600; /* font-bold */
    margin: 0rem; /* mb-2 */
    color: var(--color-opsell-white);
}

.copyright-container {
    align-items: center;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-opsell-grey-600);
    border-top: 1px solid var(--color-opsell-grey-800);
    padding-top: 1rem;
    text-align: center;
}

.footer-section {
    text-align: center;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { /* md breakpoint */
    .footer-section {
        text-align: left;
    }
}

.footer-heading {
    margin-bottom: 0.8rem; /* mb-3 */
    color: var(--color-opsell-grey-300);
    margin-top: 0rem;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.footer-link {
    color: var(--color-opsell-white);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block; /* Make it clickable area larger */
    padding: 0.25rem 0rem; /* px-2 py-1 */
    border-radius: 0.4rem; /* rounded-md */
    font-size: 0.85rem;
}

.footer-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem; /* space-x-4 */
    margin-top: 1rem; /* mt-4 */
}
@media (min-width: 768px) { /* md breakpoint */
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icon {
    width: 1.2rem;
}

.linkedin-icon, .x-icon {
    width: 100%
}

/* --- Accessibility (Screen Reader Only) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}