/* ===== Blog Page Styles (from Travelix vibe) ===== */
.blog-wrap {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
}

.blog-row {
    display: flex;
    gap: 28px;
}

.yc-blog-wrapper {
    gap: 24px;
}

.yc-blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 24px;
    padding-right: 0;
}

.yc-blog-item::before {
    display: none;
}

.yc-blog-item .xb-item--holder {
    padding-right: 0;
}

.yc-blog-item .xb-item--title {
    margin: 18px 0 24px;
}

.yc-blog-item .xb-item--img {
    width: 100%;
    height: 220px;
}

.yc-blog-item .xb-item--img .img,
.yc-blog-item .xb-item--img img {
    width: 100%;
    height: 100%;
}

.yc-blog-item .xb-item--img img {
    object-fit: cover;
}

.posts-col {
    flex: 1 1 auto;
}

.blog-post {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15,69,103,.10);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15,69,103,.10);
    margin-bottom: 22px;
}

.blog-post:hover {
    box-shadow: 0 16px 32px rgba(15,69,103,.14);
    transform: translateY(-2px);
    transition: .2s ease;
}

.blog-post__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.date-box {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 76px;
    height: 76px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    box-shadow: 0 12px 24px rgba(15,69,103,.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    line-height: 1.05;
}

.date-box .day {
    font-weight: 900;
    font-size: 24px;
    color: #0f172a;
}

.date-box .mon {
    font-size: 12px;
    font-weight: 700;
    color: #9f7c1e;
    text-transform: capitalize;
}

.blog-post__body {
    padding: 22px 22px 20px 22px;
}

.blog-post__meta {
    font-size: .88rem;
    color: #6b7c8a;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.blog-post__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #102a3a;
}

.blog-post__summary {
    color: #516473;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .78rem;
    background: rgba(212, 175, 55, 0.15);
    color: #8b6a12;
    border: 1px solid rgba(212, 175, 55, 0.4);
    margin-right: 6px;
    margin-bottom: 6px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .4px;
    color: #0f5d7a;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.sidebar-col {
    width: 360px;
    flex: 0 0 360px;
}

.widget {
    background: #fff;
    border: 1px solid rgba(15,69,103,.10);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15,69,103,.06);
    margin-bottom: 18px;
}

.widget h5 {
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #102a3a;
}

.search-row {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid rgba(15,69,103,.20);
    outline: none;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(15,69,103,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    text-decoration: none;
    color: #0f5d7a;
    font-weight: 700;
}

.widget a:hover {
    text-decoration: underline;
}

.latest-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15,69,103,.12);
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-thumb {
    width: 64px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid rgba(15,69,103,.10);
}

.latest-title {
    font-weight: 900;
    color: #102a3a;
    margin: 0;
    font-size: .95rem;
    line-height: 1.2;
}

.latest-meta {
    color: #6b7c8a;
    font-size: .82rem;
    margin-top: 2px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .8rem;
    border: 1px solid rgba(15,93,122,.18);
    background: rgba(15,93,122,.06);
    color: #0f5d7a;
    text-decoration: none;
    font-weight: 800;
}

.tag-cloud a:hover {
    background: rgba(15,93,122,.12);
}

.badge-count {
    background: rgba(15,93,122,.12);
    color: #0f5d7a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .blog-row {
        flex-direction: column;
    }
    .sidebar-col {
        width: 100%;
        flex: 0 0 auto;
    }
}
