.section-container {
    padding: 0;
}

#hero-section {
    padding: 170px 20px 80px;
    background: var(--banner-bg) no-repeat;
    background-size: 100% 100%;
    color: var(--color-white);
}
#hero-section .section-container {
    align-items: center;
}
#hero-section .col-left {
    margin-bottom: 10px;
}
#hero-section .page-title {
    margin-bottom: 20px;
    color: var(--color-white);
}
#hero-section .description p {
    margin-bottom: 50px;
    padding-right: 40px;
    color: var(--color-white);
}
#hero-section .col-right {
    width: 47%;
    flex-shrink: 0;
}
#hero-section .col-right img {
    max-width: 500px;
    height: auto;
}

.section-title {margin-bottom: 50px}
#editions {
    padding: 80px 0 40px;
    text-align: center;
}
#editions .editions-items {
    justify-content: center;
}
#editions .editions-items .item {
    flex-direction: column;
    /* flex-basis: 30%; */
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    min-height: 306px;
    padding: 35px;
    width: 100%;
    border: 1px solid var(--color-border-default);
    border-radius: 5px;
}
#editions .editions-items .item .item-title {
    padding-bottom: 0;
    line-height: 1.3;
}

#deployment {
    padding: 0;
}
#deployment .img-text-strip {
    padding: 80px 0;
}
#deployment .img-text-strip:nth-child(odd) {
    background-color: var(--color-bg-subtle);
}
#deployment .img-text-strip .cols-wrapper {
    align-items: center;
    justify-content: space-between;
}
#deployment .img-text-strip.img-left .cols-wrapper {
    flex-direction: row-reverse;
}
#deployment .img-text-strip .img-col,
#deployment .img-text-strip .text-col {
    width: 47.5%;
    flex-shrink: 0;
}
#deployment .img-text-strip .text-col .strip-title {
    font-size: var(--font-size-3xl);
}
#deployment .img-text-strip .text-col .entry-content p {
    font-size: var(--font-size-md);
    line-height: 1.5;
}
#deployment .img-text-strip .img-col .zoom-link {
    cursor: zoom-in;
}
#deployment .img-text-strip .img-col img {
    border-radius: 5px;
    box-shadow: 0 100px 80px rgba(102,124,167,.07), 0 41.78px 33.4px rgba(102,124,167,.05), 0 22.3px 18px rgba(102,124,167,.042), 0 12.5px 10px rgba(102,124,167,.035);
}

#compare-products {
    padding: 80px 0;
}
#compare-table {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
}
#compare-table td.text {
    text-align: left;
}
#compare-table th,
#compare-table td {
    border: none;
}
#compare-table th a {
    white-space: nowrap;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-brand-primary);
}
#compare-table tr.section-title td {
    font-weight: 700;
    background-color: var(--color-bg-blockquote);
}
#compare-table tbody td {
    background-color: transparent;
}
#compare-table tbody td.text + td + td i {
    color: #326DE6;
}
#compare-table tbody td.text + td + td + td i {
    color: var(--color-brand-secondary);
}
#compare-table tbody td.text + td + td + td + td i {
    color: var(--color-brand-accent);
}
.foot-note {
    max-width: 1140px;
    margin: 0 auto 18px;
    font-size: var(--font-size-xs);
    font-style: italic;
}

#get-started {
    padding: 80px 0;
    background: var(--banner-bg);
}
#get-started .section-title {
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-white);
}
#get-started .btns-wrapper {
    justify-content: center;
    gap: 24px;
}


/* Updated Product Editions (Compare Page) */
.calico-network-diagram {
    text-align: center;
    margin-bottom: 0px; 
    position: relative;
    max-width: 925px; 
    margin: 0 auto;
}

.calico-network-diagram .central-logo {
    width: auto;
    height: 60px;
    margin-bottom: 10px;
}

.calico-network-diagram .connecting-lines {
    width: 100%;
    height: 80px;
    position: relative;
}

.calico-network-diagram .connecting-lines svg {
    display: block;
    width: 100%;
}

/* Cards Wrapper - Override/Enhance existing */
#editions .editions-items {
    align-items: stretch; /* Ensure equal height */
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Individual Card Styling */
#editions .editions-items .item {
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-border-default);
    border-radius: 5px;
    padding: 50px 24px;
    width: 288px;
    min-height: 289px;
    margin-bottom: 0;
    text-align: center;
}

#editions .editions-items .item .item-title {
    font-weight: 700;
    font-size: 21px;
    line-height: 32px;
    text-align: center;
    color: var(--color-gray-900);
    margin-bottom: 10px;
    padding-bottom: 0;
}
#editions .editions-items .item .item-title .desktop-break {
    display: none;
}

#editions .editions-items .item .item-desc {
    font-weight: 500;
    font-size: var(--font-size-base);
    line-height: 24px; 
    text-align: center;
    color: var(--color-gray-900);
}

@media screen and (max-width: 1223px) {
    #editions .editions-items {
        gap: 12px;
    }
    #editions .editions-items .item {
        flex-basis: 24%;
    }
}
@media screen and (max-width: 1024px) {
    .desktop-break {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    #hero-section {
        padding: 170px 20px 70px;
        text-align: center;
    }
    #hero-section .col-left {
        width: 100%;
    }
    #hero-section .description p {
        padding-right: 0;
    }
    #hero-section .btns-wrapper {
        justify-content: center;
    }
    #hero-section .col-right {
        display: none;
    }
    #editions {
        padding: 80px 0;
    }
    #editions .editions-items {
        flex-wrap: wrap;
    }
    #editions .editions-items .item {
        flex-basis: 44%;
        margin-bottom: 0;
    }
    #deployment .img-text-strip .text-col .strip-title {
        font-size: var(--font-size-xl);
    }
    #deployment .img-text-strip .text-col .entry-content p {
        font-size: var(--font-size-base);
    }
    #compare-products .section-container {
        padding: 0 30px;
    }
    #compare-products .table-wrapper {
        max-width: none;
        overflow-x: auto;
    }
    #compare-table td.text {
        white-space: nowrap;
    }
    .calico-network-diagram .central-logo {
        margin-bottom: 20px;
    }
    .calico-network-diagram .connecting-lines {
        display: none;
    }
    #editions .editions-items {
        flex-direction: column;
        align-items: center;
    }
    #editions .editions-items .item {
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    #hero-section .page-title {
        font-size: var(--font-size-4xl);
    }
    #hero-section .btns-wrapper {
        flex-direction: column;
        align-items: center;
    }
    #deployment .img-text-strip {
        padding: 60px 0;
    }
    .section-title {
        font-size: var(--font-size-4xl);
        margin-bottom: 30px;
    }
    .section-container {
        padding: 0 20px;
    }
    #editions {
        padding: 50px 0;
    }
    #editions .editions-items .item {
        flex-basis: 100%;
    }
    #deployment .img-text-strip .cols-wrapper,
    #deployment .img-text-strip.img-left .cols-wrapper {
        flex-direction: column;
    }
    #deployment .img-text-strip .img-col, 
    #deployment .img-text-strip .text-col {
        width: 100%;
    }
    #compare-products {
        padding: 50px 0;
    }
    #get-started .btns-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
