body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header & Navigation */
#masthead.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eceeef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

#primary-menu.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

#primary-menu.menu li a {
    color: #555555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

#primary-menu.menu li.current-menu-item a,
#primary-menu.menu li a:hover {
    color: #e21a22;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle .m_menu_icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333333;
}

/* Content Area */
#content.site-content {
    padding: 50px 0;
}

.blog-feed-post-wrapper {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 35px;
    margin-bottom: 35px;
    border: 1px solid #eceeef;
}

.blog-feed-category a {
    color: #e21a22;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 10px 0 15px 0;
    line-height: 1.3;
}

.entry-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-title a:hover {
    color: #e21a22;
}

.blog-feed-meta {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 20px;
}

.blog-feed-meta a {
    color: #666666;
    text-decoration: none;
}

.blog-feed-meta a:hover {
    color: #e21a22;
}

.text-left p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444444;
    margin: 0 0 20px 0;
}

.text-left p strong {
    color: #111111;
}

.text-left p a {
    color: #e21a22;
    text-decoration: none;
    font-weight: 600;
}

.text-left p a:hover {
    text-decoration: underline;
}

.readmore-btn-wrapper {
    margin-top: 25px;
}

.readmore-btn {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.readmore-btn:hover {
    background-color: #e21a22;
}

/* Footer Section */
#colophon.site-footer {
    background-color: #111111;
    color: #babbbe;
    padding-top: 60px;
}

.footer-widgets-wrapper .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-widgets h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widgets ul li a {
    color: #babbbe;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-widgets ul li a:hover {
    color: #ffffff;
}

.footer-widget-middle a {
    color: #babbbe;
    text-decoration: none;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-widget-middle a:hover {
    color: #ffffff;
}

.search-form label {
    display: block;
    margin-bottom: 10px;
}

.search-field {
    width: 100%;
    background-color: #222222;
    border: 1px solid #333333;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 4px;
    outline: none;
}

.search-submit {
    background-color: #e21a22;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.site-info {
    border-top: 1px solid #222222;
    padding: 25px 0;
    font-size: 0.85rem;
}

.site-info .container {
    display: flex;
    justify-content: space-between;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .footer-widgets-wrapper .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    #primary-menu.menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 1.5rem;
    }

    .blog-feed-post-wrapper {
        padding: 20px;
    }

    .site-info .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}