.ls-wrapper-e5b3d3bd {
    --ls-border-color: #EAEEF2;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.ls-title-e5b3d3bd {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    position: relative;
}

.ls-title-e5b3d3bd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: #2B59FF;
    border-radius: 2px;
}

/* Specs Section */
.ls-specs-section-e5b3d3bd {
    margin-bottom: 30px;
}

/* Table Section */
.ls-table-container-e5b3d3bd {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border: 1px solid var(--ls-border-color);
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ls-table-container-e5b3d3bd {
        grid-template-columns: 1fr 2fr 1fr 2fr;
    }
}

.ls-cell-e5b3d3bd {
    padding: 16px 20px;
    border-bottom: 1px solid var(--ls-border-color);
    border-right: 1px solid var(--ls-border-color);
    display: flex;
    align-items: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .ls-table-container-e5b3d3bd .ls-cell-e5b3d3bd:nth-child(4n) {
        border-right: none;
    }
    
    .ls-table-container-e5b3d3bd .ls-cell-e5b3d3bd:nth-last-child(-n+4) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .ls-table-container-e5b3d3bd .ls-cell-e5b3d3bd:nth-child(2n) {
        border-right: none;
    }
    
    .ls-table-container-e5b3d3bd .ls-cell-e5b3d3bd:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.ls-label-e5b3d3bd {
    font-weight: 600;
    background-color: #FAFCFF;
}

.ls-value-e5b3d3bd {
    background-color: #FFFFFF;
}

/* Description Section */
.ls-desc-section-e5b3d3bd {
    margin-top: 30px;
}

.ls-desc-box-e5b3d3bd {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.ls-desc-text-wrapper-e5b3d3bd {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.ls-desc-content-e5b3d3bd {
    color: #536074;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.ls-desc-content-e5b3d3bd p {
    margin: 0 0 8px 0;
}

.ls-desc-content-e5b3d3bd p:last-child {
    margin: 0;
}

/* Line clamping for read more */
.ls-desc-content-e5b3d3bd:not(.expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-desc-toggle-e5b3d3bd {
    background: none;
    border: none;
    padding: 0;
    color: #2B59FF;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.ls-desc-toggle-e5b3d3bd:hover {
    color: #1a40cc;
}

.ls-desc-toggle-icon-e5b3d3bd {
    transition: transform 0.3s ease;
}

.ls-desc-toggle-e5b3d3bd.is-expanded .ls-desc-toggle-icon-e5b3d3bd {
    transform: rotate(-180deg);
}

/* Hide toggle if content is short */
.ls-desc-toggle-e5b3d3bd.is-hidden {
    display: none;
}
