.lc-ec-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.lc-ec-section-title {
    margin: 0 0 12px;
    color: #111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    text-align: left;
}

.lc-ec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.lc-ec-card {
    background: #fff;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    overflow: hidden;
    text-align: center;
    padding: 8px 6px 10px;
    min-height: 132px;
}

.lc-ec-photo-wrap {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.lc-ec-image {
    max-width: 100%;
    max-height: 74px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lc-ec-placeholder {
    width: 100%;
    height: 74px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 12px;
}

.lc-ec-title {
    font-size: 13px;
    line-height: 1.15;
    color: #111;
    margin-top: 2px;
}

.lc-ec-number {
    display: inline-block;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 800;
    color: #7d1f1f;
    margin-top: 2px;
    text-decoration: none;
}

.lc-ec-number:hover,
.lc-ec-number:focus {
    color: #7d1f1f;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .lc-ec-section-title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .lc-ec-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .lc-ec-card {
        min-height: 170px;
        padding: 12px 10px 14px;
    }

    .lc-ec-photo-wrap,
    .lc-ec-image,
    .lc-ec-placeholder {
        height: 100px;
        max-height: 100px;
    }

    .lc-ec-title {
        font-size: 15px;
    }

    .lc-ec-number {
        font-size: 22px;
    }
}
