/* Medivox - Blog Archive Styles */

/* ==========================================
   BREADCRUMB HEADER SECTION
   ========================================== */
.pt-breadcrumb {
    position: relative;
    padding: 80px 0;
    color: #ffffff;
    font-family:'Sora';
}

.pt-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pt-breadcrumb-container-outer {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.pt-breadcrumb-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pt-breadcrumb-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.pt-breadcrumb-title {
    margin-bottom: 15px;
}

.pt-breadcrumb-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pt-breadcrumb-container .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a i {
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.archive-description {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ==========================================
   BLOG CONTENT SECTION
   ========================================== */
.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family:'Sora';
}

.blog-content-area {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-content-area.sidebar-left {
    flex-direction: row-reverse;
}

.blog-main-content {
    flex: 2;
    min-width: 300px;
}

.blog-main-content.no-sidebar {
    flex: 1;
}

.blog-posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Post Card */
.blog-post-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pt-post-media {
    position: relative;
}

.post-thumbnail {
    margin: 0;
}

.pt-post-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
}

.pt-post-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 2;
}

.pt-post-date a {
    color: white;
    text-decoration: none;
}

.pt-blog-contain {
    padding: 30px;
}

.pt-post-meta {
    margin-bottom: 15px;
}

.pt-post-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.pt-post-author,
.pt-post-comment {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pt-post-author i,
.pt-post-comment i {
    color: #888;
}

.pt-post-comment a {
    color: #666;
    text-decoration: none;
}

.pt-blog-title {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.pt-blog-title a {
    color: #111827;
    text-decoration: none;
}

.pt-blog-info {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.pt-blog-info p {
    margin: 0;
}

.pt-button {
    display: inline-block;
    background: #16469e;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pt-button-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-button-block i {
    font-size: 18px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* No Posts */
.no-posts-found {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
}

/* Sidebar */
.blog-sidebar-col {
    flex: 1;
    min-width: 250px;
}

.blog-sidebar-sticky {
    position: sticky;
    top: 150px;
}

.blog-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.blog-widget-search {
    background: #2490eb;
}

.blog-widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.blog-widget ul li a {
    color: #111827;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-content-area {
        flex-direction: column;
    }

    .blog-content-area.sidebar-left {
        flex-direction: column;
    }
}