/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 09 2026 | 05:04:49 */
.limes-content-box {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 40px 0;
}
.limes-content-box h2 {
    color: #222;
    font-size: 26px;
    margin-bottom: 20px;
    border-left: 5px solid #ff6600;
    padding-left: 15px;
}
.limes-content-box h3 {
    color: #ff6600;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.limes-content-box p {
    margin-bottom: 15px;
}
.limes-content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.limes-content-box ul li {
    margin-bottom: 8px;
    list-style-type: none;
    position: relative;
}
.limes-content-box ul li::before {
    content: "—";
    color: #ff6600;
    font-weight: bold;
    position: absolute;
    left: -20px;
}
.limes-warning-block {
    background-color: #fff8f4;
    border: 1px solid #ff6600;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}
.limes-warning-block strong {
    color: #ff6600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.limes-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}
.limes-data-table {
    width: 100%;
    border-collapse: collapse;
}
.limes-data-table th {
    background-color: #ff6600;
    color: #fff;
    padding: 14px;
    text-align: left;
}
.limes-data-table td {
    border: 1px solid #ececec;
    padding: 12px;
}
/* ГАЙД */
.limes-guide-section {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Segoe UI', sans-serif;
}

.limes-guide-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #ff6600; /* Фирменный акцент */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
}

.limes-guide-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.1);
    border-color: #ff6600;
}

.limes-guide-num {
    font-size: 42px;
    font-weight: 900;
    color: rgba(255, 102, 0, 0.15); /* Крупная прозрачная цифра */
    line-height: 1;
    min-width: 50px;
}

.limes-guide-content h4 {
    margin: 0 0 12px 0;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limes-guide-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.limes-guide-content b {
    color: #ff6600;
}

.limes-lsi-tag {
    display: inline-block;
    background: #fff4ed;
    color: #ff6600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .limes-guide-card {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

.limes-benefit-card {
    background: #fff8f4;
    border: 1px solid #ffefe5;
    border-left: 5px solid #ff6600;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.05);
}

.limes-benefit-icon {
    background: #ff6600;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.limes-benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.limes-benefit-content {
    flex-grow: 1;
}

.limes-benefit-content strong {
    color: #ff6600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.limes-benefit-content p {
    margin: 0 !important;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}
/*Акцентный блок*/
.limes-benefit-content span {
    color: #ff6600;
    font-weight: 700;
    white-space: nowrap; /* Чтобы термины не разрывались */
}

@media (max-width: 600px) {
    .limes-benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .limes-benefit-icon {
        margin: 0 auto;
    }
}