/**
 * Templines Helping Core Widgets Styles
 *
 * @package    Templines_Helping_Core
 * @subpackage Templines_Helping_Core/widgets
 * @since      1.0.0
 */

/* Mailchimp Footer Widget Styles */
.thc-mailchimp-form {
    margin: 10px 0;
}

.thc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thc-form-group {
    display: flex;
    gap: 5px;
}

.thc-email-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.thc-subscribe-btn {
    padding: 8px 16px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.thc-subscribe-btn:hover {
    background-color: #005a87;
}

/* Footer Logotype Widget Styles */
.thc-footer-logotype {
    text-align: center;
    margin: 15px 0;
}

.thc-logo-link {
    display: inline-block;
    text-decoration: none;
}

.thc-logo-image {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Blog Post Widget Styles */
.thc-blog-post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thc-blog-post-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.thc-blog-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.thc-post-link {
    display: block;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.thc-post-link:hover {
    color: #007cba;
    text-decoration: underline;
}

.thc-post-date {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.thc-no-posts {
    color: #666;
    font-style: italic;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thc-form-group {
        flex-direction: column;
    }
    
    .thc-subscribe-btn {
        width: 100%;
    }
}
