/* ==========================================================================
   Basic Setup & Typography
   ========================================================================== */
body {
    font-family: 'Source Sans Pro', Arial, sans-serif; /* Already loaded, good choice */
    line-height: 1.7;
    color: #333; /* Dark gray for text for better readability */
    background-color: #f4f7f6; /* Light, neutral background */
    margin: 0;
    font-size: 17px; /* Slightly larger base font size */
}

.wrap {
    max-width: 1140px; /* Common container width */
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #0073e5; /* WordPress blue, consistent with existing theme accents */
    text-decoration: none;
}

a:hover,
a:focus {
    color: #005cb9; /* Darker blue on hover */
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* Bolder headings */
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px; /* Slightly rounded corners for images */
}

/* Helper class for screen readers */
.screen-reader-shortcut,
.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.title-area {
    text-align: center; /* Center title if no logo */
}

.site-title {
    margin: 0;
    font-size: 2.5em; /* Larger site title */
}

.site-title a {
    color: #222;
    font-weight: 700;
    text-decoration: none;
}
.site-title a:hover {
    color: #0073e5;
}

/* If you had a site description
.site-description {
    font-size: 1em;
    color: #777;
    margin-top: 5px;
}
*/

/* ==========================================================================
   Main Content Area & Sidebar
   ========================================================================== */
.site-inner {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-sidebar-wrap {
    display: flex;
    flex-wrap: wrap; /* Allows sidebar to stack on smaller screens */
    gap: 30px; /* Space between content and sidebar */
}

.content {
    flex: 3; /* Main content takes more space */
    min-width: 0; /* Fix for flex item overflow */
}

.sidebar-primary {
    flex: 1; /* Sidebar takes less space */
    min-width: 280px; /* Minimum width for sidebar */
}

/* ==========================================================================
   Entries (Blog Posts)
   ========================================================================== */
.entry {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 2em; /* Prominent entry titles */
    margin-top: 0;
    margin-bottom: 0.2em;
}

.entry-title a {
    color: #2c3e50; /* A slightly different dark blue/gray for titles */
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073e5;
}

/* Post meta (author, date, etc. - if you add it)
.entry-meta {
    font-size: 0.9em;
    color: #767676;
    margin-bottom: 15px;
}
*/

.entry-content {
    font-size: 1.05em; /* Slightly larger content font */
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
    margin-bottom: 1.5em;
}

.entry-content h6 { /* The "We appreciate..." text */
    font-size: 0.95em;
    color: #666;
    font-style: italic;
    margin-top: 0;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.75em;
    margin-bottom: 1.5em;
}

.entry-content ul {
    list-style: disc;
    padding-left: 25px;
}
.entry-content ul li {
    margin-bottom: 0.5em;
}

.entry-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.entry-content img.wp-image-11, /* Specific to the "GET 30 DAY FREE TRIAL" button image */
.entry-content .wp-image-11 { /* More flexible selector for the button */
    display: block;
    margin: 20px auto; /* Center the button */
    border: none; /* Remove border if it's just a button image */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-out;
}
.entry-content img.wp-image-11:hover {
    transform: translateY(-2px);
}


/* ==========================================================================
   Pagination
   ========================================================================== */
.archive-pagination {
    clear: both;
    margin: 40px 0;
}

.archive-pagination .pagination-next a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0073e5;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.archive-pagination .pagination-next a:hover {
    background-color: #005cb9;
}

/* ==========================================================================
   Sidebar Widgets
   ========================================================================== */
.widget {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.widget-title {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073e5;
}

.widget_custom_html .widget-wrap {
    padding: 0; /* Remove default padding if widget itself has padding */
}
.widget_custom_html img { /* The Beehiiv banner */
    display: block; /* Remove extra space below */
    border: 1px solid #ddd; /* Add a light border to sidebar image */
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background-color: #2c3e50; /* Dark footer background */
    color: #bdc3c7; /* Light gray text for footer */
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px; /* Space above footer */
}

.site-footer p {
    margin: 0 0 10px;
}
.site-footer p:last-child {
    margin-bottom: 0;
}

.site-footer a {
    color: #ffffff; /* White links in footer */
    font-weight: 600;
}

.site-footer a:hover {
    color: #0091ea; /* Lighter blue for hover in dark footer */
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .content-sidebar-wrap {
        flex-direction: column; /* Stack content and sidebar */
    }

    .content {
        padding-right: 0; /* Remove right padding when stacked */
    }

    .entry {
        padding: 20px;
    }

    .entry-title {
        font-size: 1.7em;
    }

    .site-title {
        font-size: 2em;
    }
}