.container {
    max-width: 1200px;
}

.main-content {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.main-content .container {
    max-width: 1000px;
}

.post-content {
    background-color: #f6f6f6;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.post-content img {
    max-width: 100%;
    width: 100%;
}

.featured-img {
    margin: 0 auto 25px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    max-width: 80%;
}

.featured-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.post-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
    line-height: 1.2;
}

.post-content .content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.hours span {
    color: #000;
}

.sidebar-form .form-group {
    margin-bottom: 15px;
}

.form-control,
.form-select {
    box-shadow: none !Important;
}

input.submit-btn.btn {
    background: black;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.submit-btn:hover {
    opacity: .8;
}

/* Typography improvements */
.post-content .content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: black;
}

.post-content .content h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    color: black;
}

.post-content .content p {
    margin-bottom: 20px;
}

.post-content .content a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid rgba(21, 72, 158, 0.2);
    transition: border-color 0.2s ease;
}

.post-content .content a:hover {
    border-color: rgba(21, 72, 158, 0.8);
}

/* Add meta info styling */
.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-meta .date {
    margin-right: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 15px;
    }

    .post-content {
        padding: 20px;
    }

    /* .featured-img {
        margin: -20px -20px 20px -20px;
    } */

    .post-content h1 {
        font-size: 2rem;
    }
}