.single .hentry .entry-header {
    /* margin: 0 0 1em; */
    /* border-bottom: none; */
    /* box-shadow: 4px 4px 0 var(--background-middle); */
}

.single .hentry .entry-header h1 {
    margin: 0 0 0.2em 0;
}

.single .post-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single .post-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 2em;
    margin-bottom: 1.75em;
}

.single .entry-header:has(.post-thumbnail-small) {
    display: flex;
    flex-direction: row;
    gap: 2em;
    padding: 0.5em 0 1em;
}

.single .entry-header:has(.post-thumbnail-small) h1 {
    margin: 0;
}

.single .entry-header:has(.post-thumbnail-small) img {
    margin-bottom: 0;
}

.single article {
    padding: 0 2em;
    margin: -4px 4px 2em -4px;
    background-color: white;
    border-radius: 2em;
    padding: 1.5em 2em 2em;
    box-shadow: 4px 4px 0 var(--background-middle);
}

.single .entry-content {
    padding: 1em 2em;
}



/* Table Styles - Light & Hollow Design */
.single .entry-content table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 4px !important;
    /* Creates the "hollow border" effect */
    margin: 2em 0;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: hidden !important;
    border-radius: 1.5em !important;
}

.single .entry-content table th {
    background-color: var(--background-dark);
    /* Light gray for headers */
    color: var(--wp--preset--color--contrast, #333);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border: none !important;
}

.single .entry-content table td {
    background-color: var(--background-middle);
    /* Lighter gray for cells */
    color: var(--wp--preset--color--contrast, #333);
    padding: 12px 16px;
    border: none !important;
}

.single .entry-content table tr:last-child td {
    border-bottom: none;
}

.single .entry-content table tr:nth-child(even) {
    background-color: transparent !important;
    /* Clear zebra striping */
}

/* Responsiveness for small screens */
@media (max-width: 600px) {
    .single .entry-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}