/* Custom Content Sections */
.main-column {
    /* This wrapper ensures custom content doesn't break the grid layout */
    display: flex;
    flex-direction: column;
    gap: 0;
}

.custom-content-section {
    width: 100%;
    margin: 2rem 0;
}

.custom-content-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.custom-content-item:last-child {
    margin-bottom: 0;
}

/* Responsive images in custom content */
.custom-content-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Typography in custom content */
.custom-content-item h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color, #1e293b);
}

.custom-content-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color, #1e293b);
}

.custom-content-item p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-light, #64748b);
}

.custom-content-item a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
}

.custom-content-item a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-content-item {
        padding: 1.5rem;
    }

    .custom-content-item h2 {
        font-size: 1.5rem;
    }

    .custom-content-item h3 {
        font-size: 1.25rem;
    }
}