/* Block Editor Styles */
.block-editor-find-best-sites {
    border: 2px dashed #ddd;
    padding: 20px;
    background: #f9f9f9;
}

.find-best-sites-editor-preview {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #3d5631;
    margin-bottom: 16px;
    text-align: center;
}

.section-description {
    font-size: 16px;
    color: #465664;
    margin-bottom: 16px;
    line-height: 1.6;
}

.features-section {
    margin: 32px 0;
    padding: 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #3d5631;
    margin-bottom: 12px;
}

.features-intro {
    font-size: 16px;
    color: #465664;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    margin-top: 16px;
}

.features-list h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3d5631;
    margin-bottom: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 6px;
    border-left: 4px solid #3d5631;
}

.feature-number {
    background: #3d5631;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 14px;
    color: #465664;
    line-height: 1.4;
    flex: 1;
}

.section-conclusion {
    font-size: 16px;
    color: #465664;
    margin-top: 24px;
    padding: 16px;
    background: #f0f4ec;
    border-radius: 6px;
    line-height: 1.6;
}

/* Frontend Styles */
.tw-cols-card.tw-cols-card-shadow {
    margin: 40px 0;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tw-cols-card .wp-block-column {
    max-width: 900px;
    margin: 0 auto;
}

.tw-cols-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3d5631;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.tw-cols-card p {
    font-size: 18px;
    color: #465664;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tw-cols-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #3d5631;
    margin-bottom: 16px;
    margin-top: 32px;
}

.tw-cols-card ul.wp-block-list {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.tw-cols-card ul.wp-block-list li {
    font-size: 16px;
    color: #465664;
    line-height: 1.6;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 6px;
    border-left: 4px solid #3d5631;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tw-cols-card ul.wp-block-list li::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: #3d5631;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.tw-cols-card ul.wp-block-list {
    counter-reset: list-item;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tw-cols-card.tw-cols-card-shadow {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .tw-cols-card h2 {
        font-size: 26px;
    }
    
    .tw-cols-card h3 {
        font-size: 20px;
    }
    
    .tw-cols-card p {
        font-size: 16px;
    }
    
    .features-section {
        padding: 20px;
        margin: 24px 0;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-right: 10px;
    }
    
    .feature-text {
        font-size: 13px;
    }
}
