.daylight-breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
}

.daylight-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #6c757d;
}

.daylight-breadcrumb-inner a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.daylight-breadcrumb-inner a:hover {
    color: #0056b3;
}

.daylight-breadcrumb-inner i {
    margin-right: 5px;
}


.daylight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    min-height: calc(100vh - 200px);
}


.daylight-main-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
    overflow: hidden;
}


.daylight-posts-header {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
}

.daylight-posts-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.daylight-posts-title {
    font-size: 24px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.daylight-posts-title i {
    color: #007bff;
    font-size: 22px;
}

.daylight-posts-count {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.daylight-posts-count i {
    color: #007bff;
}


.daylight-posts-list {
    padding: 0;
}


.daylight-post-item {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.daylight-post-item:last-child {
    border-bottom: none;
}

.daylight-post-item:hover {
    background: rgba(135, 206, 235, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.daylight-post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #0056b3);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daylight-post-item:hover::before {
    transform: scaleY(1);
}


.daylight-post-image {
    flex: 0 0 200px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(135, 206, 235, 0.1);
    position: relative;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.daylight-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.02);
}

.daylight-post-item:hover .daylight-post-img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.daylight-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.daylight-post-item:hover .daylight-image-overlay {
    opacity: 1;
}

.daylight-post-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(173, 216, 230, 0.1) 100%);
    color: #007bff;
    font-size: 28px;
}


.daylight-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.daylight-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6c757d;
    flex-wrap: wrap;
}

.daylight-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 123, 255, 0.08);
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.daylight-meta-item i {
    color: #007bff;
}

.daylight-category-link {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 5px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.daylight-category-link:hover {
    background: rgba(40, 167, 69, 0.8);
    color: #fff;
    transform: translateY(-1px);
}


.daylight-post-title {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 12px;
    line-height: 1.4;
}

.daylight-post-title a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.daylight-post-title:hover,
.daylight-post-title a:hover {
    color: #007bff;
}


.daylight-post-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    background: rgba(248, 249, 250, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.05);
}


.daylight-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

.daylight-post-stats {
    display: flex;
    gap: 15px;
    color: #6c757d;
    font-size: 13px;
}

.daylight-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(108, 117, 125, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid rgba(108, 117, 125, 0.1);
}

.daylight-stat-item i {
    color: #007bff;
}

.daylight-read-more-btn {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(0, 123, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.daylight-read-more-btn:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}


.daylight-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    align-self: start;
}


.daylight-sidebar::-webkit-scrollbar {
    width: 6px;
}

.daylight-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 3px;
}

.daylight-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.daylight-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.5);
}


.daylight-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
    overflow: hidden;
}

.daylight-widget-title {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.daylight-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.daylight-widget-title i {
    color: #007bff;
    font-size: 18px;
}

.daylight-widget-content {
    padding: 25px;
}


.daylight-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daylight-category-item {
    margin-bottom: 10px;
}

.daylight-category-item:last-child {
    margin-bottom: 0;
}

.daylight-category-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #6c757d;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.daylight-category-link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #007bff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daylight-category-link-item:hover::before {
    transform: scaleY(1);
}

.daylight-category-link-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(3px);
    border-color: rgba(0, 123, 255, 0.2);
}

.daylight-category-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.daylight-category-name i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.daylight-category-count {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    font-weight: 500;
}


.daylight-hot-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daylight-hot-post-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.05);
    transition: all 0.3s ease;
}

.daylight-hot-post-item:hover {
    background: rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.daylight-hot-post-item:last-child {
    margin-bottom: 0;
}

.daylight-hot-post-title {
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.daylight-hot-post-title:hover {
    color: #007bff;
}

.daylight-hot-post-title i {
    color: #007bff;
    margin-top: 2px;
    flex-shrink: 0;
}

.daylight-hot-post-meta {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 123, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 123, 255, 0.08);
}

.daylight-hot-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.daylight-hot-meta-item i {
    color: #007bff;
    font-size: 11px;
}


.daylight-archive-count {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    font-weight: 500;
    margin-left: auto;
}

.daylight-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 123, 255, 0.3) rgba(0, 123, 255, 0.1);
}

.daylight-archive-list::-webkit-scrollbar {
    width: 6px;
}

.daylight-archive-list::-webkit-scrollbar-track {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 3px;
}

.daylight-archive-list::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.daylight-archive-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.5);
}

.daylight-archive-item {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.05);
    transition: all 0.3s ease;
}

.daylight-archive-item:last-child {
    margin-bottom: 0;
}

.daylight-archive-item:hover {
    background: rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
    transform: translateX(3px);
}

.daylight-archive-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.daylight-archive-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #007bff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daylight-archive-item:hover .daylight-archive-link::before {
    transform: scaleY(1);
}

.daylight-archive-item:hover .daylight-archive-link {
    color: #007bff;
}

.daylight-archive-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.daylight-archive-date {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 11px;
    border: 1px solid rgba(0, 123, 255, 0.15);
    flex-shrink: 0;
}


.daylight-empty-state {
    padding: 80px 20px;
    text-align: center;
    color: #6c757d;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px dashed rgba(0, 123, 255, 0.2);
    margin: 20px;
}

.daylight-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: rgba(0, 123, 255, 0.3);
}

.daylight-empty-text {
    font-size: 18px;
    margin: 0;
    color: #6c757d;
}

.daylight-archive-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    border: 1px dashed rgba(0, 123, 255, 0.2);
}

.daylight-archive-empty i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: rgba(0, 123, 255, 0.4);
}

.daylight-archive-empty p {
    font-size: 14px;
    margin: 0;
}


.daylight-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: daylight-fadeInUp 0.6s ease forwards;
}

@keyframes daylight-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .daylight-breadcrumb {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .daylight-breadcrumb-inner {
        padding: 0 15px;
        font-size: 13px;
    }

    .daylight-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .daylight-posts-header {
        padding: 20px;
    }

    .daylight-posts-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .daylight-posts-count {
        font-size: 13px;
    }

    .daylight-post-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .daylight-post-image {
        flex: none;
        height: 180px;
        border-radius: 10px;
    }

    .daylight-post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .daylight-meta-item,
    .daylight-category-link {
        font-size: 11px;
        padding: 4px 8px;
    }

    .daylight-post-title {
        font-size: 18px;
    }

    .daylight-post-excerpt {
        padding: 12px;
        font-size: 14px;
    }

    .daylight-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .daylight-post-stats {
        gap: 10px;
    }

    .daylight-stat-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .daylight-read-more-btn {
        font-size: 13px;
        padding: 8px 16px;
        align-self: flex-end;
    }

    .daylight-sidebar {
        position: static;
        top: auto;
        max-height: none;
        overflow-y: visible;
        gap: 20px;
    }

    .daylight-widget-title {
        padding: 15px 20px;
        font-size: 15px;
    }

    .daylight-widget-content {
        padding: 20px;
    }

    .daylight-category-link-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .daylight-hot-post-title {
        font-size: 13px;
    }

    .daylight-hot-post-meta {
        font-size: 11px;
        padding: 6px 10px;
    }

    .daylight-archive-link {
        font-size: 12px;
        padding: 10px 12px;
    }

    .daylight-archive-date {
        font-size: 10px;
        padding: 1px 5px;
    }
}


@media (max-width: 480px) {
    .daylight-container {
        padding: 0 10px;
        gap: 20px;
    }

    .daylight-posts-header {
        padding: 15px;
    }

    .daylight-posts-title {
        font-size: 18px;
    }

    .daylight-post-item {
        padding: 15px;
        gap: 12px;
    }

    .daylight-post-image {
        height: 160px;
    }

    .daylight-post-title {
        font-size: 16px;
    }

    .daylight-post-excerpt {
        font-size: 13px;
        padding: 10px;
    }

    .daylight-widget-title {
        padding: 12px 15px;
        font-size: 14px;
    }

    .daylight-widget-content {
        padding: 15px;
    }

    .daylight-category-link-item {
        padding: 8px 10px;
        font-size: 12px;
    }

    .daylight-category-count,
    .daylight-archive-count {
        font-size: 10px;
        padding: 2px 6px;
    }

    .daylight-hot-post-item {
        padding: 12px;
    }

    .daylight-hot-post-title {
        font-size: 12px;
    }

    .daylight-archive-list {
        max-height: 300px;
    }

    .daylight-archive-link {
        font-size: 11px;
        padding: 8px 10px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .daylight-fade-in,
    .daylight-post-item,
    .daylight-widget,
    .daylight-category-link-item,
    .daylight-hot-post-item,
    .daylight-archive-item {
        animation: none !important;
        transition: none !important;
    }
}


@media (prefers-contrast: high) {

    .daylight-breadcrumb,
    .daylight-main-content,
    .daylight-widget {
        background: #fff !important;
        border: 2px solid #000 !important;
    }

    .daylight-post-item,
    .daylight-category-link-item,
    .daylight-hot-post-item,
    .daylight-archive-item {
        background: #fff !important;
        border: 1px solid #000 !important;
    }

    .daylight-posts-title,
    .daylight-widget-title,
    .daylight-post-title {
        color: #000 !important;
    }

    .daylight-meta-item,
    .daylight-stat-item,
    .daylight-category-count,
    .daylight-archive-count {
        background: #f0f0f0 !important;
        border: 1px solid #000 !important;
    }
}


@media print {

    .daylight-breadcrumb,
    .daylight-sidebar {
        display: none !important;
    }

    .daylight-container {
        grid-template-columns: 1fr !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .daylight-main-content {
        background: #fff !important;
        border: none !important;
        box-shadow: none !important;
    }

    .daylight-post-item {
        background: #fff !important;
        border-bottom: 1px solid #ccc !important;
        box-shadow: none !important;
        transform: none !important;
        page-break-inside: avoid;
    }

    .daylight-post-image {
        display: none !important;
    }

    .daylight-post-item {
        flex-direction: column !important;
    }
}


.daylight-post-item:focus,
.daylight-category-link-item:focus,
.daylight-hot-post-title:focus,
.daylight-archive-link:focus,
.daylight-read-more-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}


.daylight-container ::selection {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.daylight-container ::-moz-selection {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}


.daylight-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #007bff;
}

.daylight-loading i {
    font-size: 24px;
    animation: daylight-spin 1s linear infinite;
}

@keyframes daylight-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}