/* ========================================
   Blog Single Post Specific Styles
   ======================================== */

.entry-content {
    color: #29363D;
    font-size: 1.125rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

.entry-content h1 {
    font-size: 2.25rem;
}

.entry-content h2 {
    font-size: 1.875rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content h4 {
    font-size: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #C51C22;
    background-color: #f7f7f7;
    font-style: italic;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content a {
    color: #C51C22;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.entry-content a:hover {
    color: #a01820;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.entry-content strong,
.entry-content b {
    font-weight: 600;
}

.entry-content code {
    background-color: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.entry-content pre {
    background-color: #2d2d2d;
    color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.entry-content hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.entry-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.entry-content th {
    background-color: #f7f7f7;
    font-weight: 600;
}