/* ===============================
   Guides Local Styling
   =============================== */

/* ===============================
   Modern Blog Header Design
   =============================== */

.guides-hero-modern {
    background: #ffffff;
    padding: 60px 0 30px;
    border-bottom: 1px solid #f0f2f5;
}

.guides-hero-content {
    max-width: 900px;
}

.guides-breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.guides-breadcrumb a {
    color: #0b4da2;
    text-decoration: none;
}

.guides-breadcrumb span {
    margin: 0 6px;
}

.guides-hero-modern h1 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.25;
}

.guides-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.guides-meta .dot {
    width: 4px;
    height: 4px;
    background: #bbb;
    border-radius: 50%;
}

/* Responsive */

@media (max-width: 768px) {

    .guides-hero-modern {
        padding: 40px 0 20px;
    }

    .guides-hero-modern h1 {
        font-size: 26px;
    }

    .guides-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.guides-wrapper {
    padding: 40px 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Headings */

.guides-wrapper h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
}

.guides-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0b4da2;
}

.guides-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph */

.guides-wrapper p {
    margin-bottom: 15px;
}

/* ===============================
   LIST FIX (Bullet Restore)
   =============================== */

.guides-wrapper ul,
.guides-wrapper .checklist {
    list-style-type: disc !important;
    list-style-position: outside;
    padding-left: 25px !important;
    margin-bottom: 20px;
}

.guides-wrapper ol {
    list-style-type: decimal !important;
    padding-left: 25px !important;
    margin-bottom: 20px;
}

.guides-wrapper ul li,
.guides-wrapper ol li {
    display: list-item !important;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Links */

.guides-wrapper a {
    color: #0b4da2;
    text-decoration: none;
    font-weight: 500;
}

.guides-wrapper a:hover {
    text-decoration: underline;
}

/* Horizontal Rule */

.guides-wrapper hr {
    margin: 30px 0;
    border-top: 1px solid #e5e5e5;
}

/* Call to Action Box */

.guides-cta {
    background: #f5f8ff;
    padding: 20px;
    border-left: 4px solid #0b4da2;
    margin: 30px 0;
    border-radius: 4px;
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 768px) {

    .guides-wrapper h1 {
        font-size: 26px;
    }

    .guides-wrapper h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    position: relative;
    padding-left: 15px;
	}
	
    .guides-wrapper h3 {
        font-size: 18px;
    }

}

/* ===============================
   Modern CTA Buttons (Article Theme)
   =============================== */

.guides-cta {
    background: linear-gradient(135deg, #f5f8ff, #eef3ff);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #e3e9ff;
    box-shadow: 0 10px 25px rgba(11, 77, 162, 0.05);
}

.guides-cta p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #222;
}

.guides-cta-buttons {
    display: flex;
	gap: 20px;          /* Increased spacing */
    margin-top: 10px;   /* Space above buttons */
    flex-wrap: wrap;
}

/* Download Button */

.btn-guides-download {
    background: #0b4da2;
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(11, 77, 162, 0.25);
}

.btn-guides-download:hover {
    background: #083a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(11, 77, 162, 0.35);
}

/* Buy Button */

.btn-guides-buy {
    background: #ffffff;
    color: #0b4da2 !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #0b4da2;
    transition: all 0.25s ease;
}

.btn-guides-buy:hover {
    background: #0b4da2;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {
    .guides-cta {
        padding: 22px;
    }

    .guides-cta-buttons {
        flex-direction: column;
    }

    .btn-guides-download,
    .btn-guides-buy {
        justify-content: center;
        width: 100%;
    }
}