/* Campaign Blog Styles */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.text-image-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.text-content {
    padding: 2rem;
}

.text-content h2 {
    color: #0066b3;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-content h3 {
    color: #0066b3;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.text-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

.text-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: #0066b3;
    border-radius: 50%;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.campaign-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.campaign-info {
    flex: 1;
}

.campaign-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.campaign-date i {
    color: #0066b3;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .content-section {
        padding: 1.5rem;
    }

    .text-content {
        padding: 1.5rem;
    }

    .text-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .campaign-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .campaign-logo {
        width: 150px;
    }

    .text-content {
        padding: 1.25rem;
    }

    .text-content h2 {
        font-size: 1.4rem;
    }

    .text-content h3 {
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1rem;
    }

    .text-content {
        padding: 1rem;
    }

    .text-content h2 {
        font-size: 1.3rem;
    }

    .campaign-header {
        padding: 1rem;
    }
}