/* Custom Content Block */
.custom-content-block {
    padding-top: 60px;
    background: #fff;
}

.custom-content-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 200px;
}

/* Standard typography for WYSIWYG content */
.custom-content-inner h1,
.custom-content-inner h2,
.custom-content-inner h3,
.custom-content-inner h4,
.custom-content-inner h5,
.custom-content-inner h6 {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.custom-content-inner h1 {
    font-size: 36px;
    font-weight: 700;
}

.custom-content-inner h2 {
    font-size: 32px;
    font-weight: 700;
}

.custom-content-inner h3 {
    font-size: 28px;
    font-weight: 600;
}

.custom-content-inner p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.custom-content-inner ul,
.custom-content-inner ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.custom-content-inner li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.custom-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.custom-content-inner a {
    color: #1e428b;
    text-decoration: underline;
    transition: color 0.2s;
}

.custom-content-inner a:hover {
    color: #0195c8;
}

.custom-content-inner blockquote {
    border-left: 4px solid #1e428b;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.custom-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.custom-content-inner table th,
.custom-content-inner table td {
    padding: 12px;
    border: 1px solid #eeeeee;
    text-align: left;
}

.custom-content-inner table th {
    background: #f7f7f7;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1400px) {
    .custom-content-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px) {
    .custom-content-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .custom-content-block {
        padding: 40px 0;
    }
    
    .custom-content-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
