/*--------------------------------------------------------------
Theme-specific styles
--------------------------------------------------------------*/

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: #1e62ff;
    margin-bottom: 1.15rem;
}

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 2.5rem;
}

.post-column > .blog-card {
    box-shadow: none;
    border-radius: 0;
    border: none;
}

.post-column .entry-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.post-column .blog-meta {
    margin-bottom: 1.5rem;
}

.post-column .entry-summary,
.post-column .entry-content {
    font-size: 1.05rem;
    color: #36486b;
}

.post-navigation {
    gap: 1.5rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 1.25rem 1.5rem;
    background: #f4f6fb;
    border-radius: 14px;
    border: 1px solid rgba(11, 28, 60, 0.08);
    color: #0d1b3d;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-navigation a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 28px rgba(11, 28, 60, 0.12);
}

.sidebar .widget {
    background: #fff;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 36, 74, 0.08);
    border: 1px solid rgba(11, 28, 60, 0.06);
}

.sidebar .widget + .widget {
    margin-top: 1.75rem;
}

.sidebar .widget-title {
    margin-bottom: 0.75rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    position: relative;
    max-width: 480px;
}

.search-form .search-field {
    flex: 1;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 28, 60, 0.18);
    background: #fff;
    font-size: 0.95rem;
}

.search-form .search-submit {
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #1e62ff, #0b1c3c);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-form .search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(15, 36, 74, 0.2);
}

.comments-area {
    margin-top: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(11, 28, 60, 0.08);
    box-shadow: 0 18px 28px rgba(15, 36, 74, 0.08);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list > li {
    margin-bottom: 2.25rem;
}

.comment-body {
    border-bottom: 1px solid rgba(11, 28, 60, 0.08);
    padding-bottom: 1.5rem;
}

.comment-meta .comment-author {
    font-weight: 600;
}

.comment-meta .comment-metadata a {
    font-size: 0.85rem;
    color: #7a89a9;
}

.comment-content p {
    margin-top: 0.75rem;
    color: #36486b;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(11, 28, 60, 0.12);
    margin-bottom: 1rem;
    background: #f7f9ff;
}

.comment-respond .submit {
    background: linear-gradient(135deg, #1e62ff, #0b1c3c);
    color: #fff;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-respond .submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 18px rgba(15, 36, 74, 0.18);
}

.footer-menu {
    list-style: none;
    display: inline-flex;
    gap: 1.25rem;
    padding: 0;
    margin: 0.75rem 0 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu a:hover {
    color: #fff;
}

.no-results,
.error-404 {
    text-align: center;
    padding: 3rem 0;
}

.no-posts {
    text-align: center;
    color: #546384;
}

.blog-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card .cta-buttons {
    margin-top: 1.75rem;
}

.archive-layout .blog-card {
    box-shadow: none;
    border: 1px solid rgba(11, 28, 60, 0.08);
}

@media (max-width: 1040px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 2rem;
    }
}
