/*
Theme Name: Phoenix
Description: PHOENIX MEDICAL CENTER
Version: 1.0
Author: ...
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h1{
    display: none;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    margin: 20px 0;
    padding: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 15px;
    margin: 0;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 8px;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 5px;
    }
}

/* Single Post Styles */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.content-area {
    flex: 2;
}

.sidebar {
    flex: 1;
    max-width: 300px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.2;
}

.entry-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    margin: 20px 0;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.entry-content {
    line-height: 1.6;
    margin-bottom: 30px;
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 30px;
}

.entry-footer span {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 48%;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 15px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: #007bff;
    box-shadow: 0 2px 5px rgba(0,123,255,0.15);
}

.meta-nav {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    display: block;
    font-weight: 600;
    line-height: 1.3;
}

/* Sidebar Styles */
.sidebar .widget {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.sidebar .widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .widget li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar .widget li:last-child {
    border-bottom: none;
}

.sidebar .widget a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar .widget a:hover {
    color: #007bff;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        max-width: 100%;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
    
    .entry-title {
        font-size: 24px;
    }
}
