/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra Child Theme
Author: admin
Author URI: https://entheollp.com/
Template: astra
Version: 1.0.0
*/

/* Inherit parent theme styles */
@import url("../astra/style.css");

/* ===============================
   DROP CAP STYLING
================================= */
.drop-cap {
    float: left;
    font-size: 3.2em;
    line-height: 1;
    padding-right: 12px;
    padding-left: 2px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

/* Target first paragraph inside post content */
.entry-content p:first-of-type .drop-cap {
    float: left;
}

/* ===============================
   AUTHOR BIO SECTION
================================= */
.author-bio {
    margin-top: 40px;
    padding: 25px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.author-bio .author-avatar img {
    border-radius: 50%;
    max-width: 80px;
    height: auto;
}

.author-bio .author-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.author-bio .author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

@media screen and (max-width: 600px) {
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-bio .author-avatar img {
        margin-bottom: 10px;
    }
}

/* ===============================
   SITE BACKGROUND
================================= */
body {
    background-color: #f1f1f1 !important; /* Light grey */
}

/* ===============================
   PROFESSIONAL FOOTER
================================= */
.site-footer {
    background-color: #111827;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #f3f4f6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #374151;
    margin-top: 30px;
    color: #9ca3af;
}

/* Responsive Design for Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}
/* === Clear layout issues on all content pages === */
.site-content::after,
.ast-container::after,
.ast-row::after {
    content: "";
    display: block;
    clear: both;
}

.site-content,
.ast-container,
.ast-row {
    display: block !important;
    float: none !important;
    width: 100% !important;
}
