/**
 * General Page Template Styles
 */

.general-page-container {
    padding-bottom: 100px;
}

/* Hero Image */
.general-hero-wrapper {
    width: 100%;
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 24px;
    line-height: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.general-hero-image {
    width: 100%;
    height: 580px;
    display: block;
    object-fit: cover;
}

/* Content Area */
.general-content-area {
    /* max-width: 900px; */
}

.general-page-title {
    font-size: 45px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.entry-content {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    overflow-wrap: break-word;
    word-break: break-word;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 60px 0 30px;
}

.entry-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 10px;
}

/* WP Buttons override */
.wp-block-button__link,
.entry-content .btn,
.entry-content a.btn,
.entry-content a.button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #152C53;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wp-block-button__link:hover,
.entry-content .btn:hover,
.entry-content a.btn:hover,
.entry-content a.button:hover {
    background-color: #182036;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.entry-content a {
    color: var(--accent-red);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .general-hero-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .general-page-title {
        font-size: 32px;
    }

    .general-hero-image {
        height: 250px;
        border-radius: 15px;
    }

    .entry-content h2 {
        font-size: 28px;
    }

    .entry-content h3 {
        font-size: 24px;
    }
}