/* Word to WordPress Template Styles */
.word-custom-template {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Content Container */
.word-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.word-content-article {
    background: #fff;
}

/* TITLE FIRST - Top of the page */
.entry-header {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px 0;
}

.entry-title {
    font-size: 2.5em;
    margin: 0;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

/* Full Scale Featured Image - Below Title */
.featured-image-fullscale {
    width: 100%;
    margin: 0 0 40px 0;
    overflow: hidden;
    text-align: center;
}

.full-scale-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* Content Area - After Image */
.word-preserved-content {
    font-family: inherit !important;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

.word-preserved-content * {
    font-family: inherit !important;
    max-width: 100%;
}

/* Preserve Word formatting */
.word-preserved-content p,
.word-preserved-content span,
.word-preserved-content div,
.word-preserved-content li,
.word-preserved-content td {
    font-family: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

.word-preserved-content table {
    width: auto !important;
    max-width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
}

.word-preserved-content td,
.word-preserved-content th {
    border: 1px solid #ddd;
    padding: 8px 12px;
    vertical-align: top;
}

.word-preserved-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.word-preserved-content ul,
.word-preserved-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.word-preserved-content h1,
.word-preserved-content h2,
.word-preserved-content h3,
.word-preserved-content h4,
.word-preserved-content h5,
.word-preserved-content h6 {
    margin: 30px 0 15px 0;
    color: #333;
}

/* Responsive */
@media (max-width: 767px) {
    .word-content-container {
        padding: 0 15px;
    }
    
    .entry-title {
        font-size: 2em;
        padding: 10px 0;
    }
    
    .featured-image-fullscale {
        margin-bottom: 25px;
    }
    
    .entry-header {
        margin-bottom: 20px;
        padding: 10px 0;
    }
}