
.ycc24-module {
    background: var(--kimone-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.ycc24-module:hover {
    transform: translateY(-5px);
}

.ycc24-header {
    background: linear-gradient(135deg, #2c5c34 0%, #4a8c5a 100%);
    padding: 20px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ycc24-header i {
    font-size: 24px;
}

.ycc24-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.ycc24-content {
    padding: 30px;
}

.ycc24-features-list {
    list-style: none;
    margin: 20px 0;
}

.ycc24-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
}

.ycc24-features-list li:last-child {
    border-bottom: none;
}

.ycc24-features-list li:before {
    content: "•";
    color: #4a8c5a;
    font-weight: bold;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.ycc24-image-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 20px 0;
}

.ycc24-image-content.reverse {
    flex-direction: row-reverse;
}

.ycc24-text-content {
    flex: 1;
}

.ycc24-image-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ycc24-image-wrapper img {
    width: 100%;
    display: block;
}

.ycc24-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.ycc24-spec-item {
    background: #f9faf9;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #4a8c5a;
    font-size: 16px;
}

.ycc24-customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.ycc24-custom-item {
    padding: 10px;
    background: #f9faf9;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .ycc24-image-content,
    .ycc24-image-content.reverse {
        flex-direction: column;
    }
    
    .ycc24-specs-grid {
        grid-template-columns: 1fr;
    }
}
