header{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.slideshow {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
    filter: brightness(0.7);
}
.slide.current {
    opacity: 1;
}
.slideshow-overlay {
    position: absolute;
    left: 225px;
    bottom: 220px;
    color: #fff;
    z-index: 1;
    max-width: 600px;
}
.slideshow-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.slideshow-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.slideshow-meta {
    display: flex;
    gap: 24px;
    font-size: 1rem;
    align-items: center;
    opacity: 0.9;
}

.blog-content {
    display: flex;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    gap: 40px;
    /* border-bottom: 1px solid #ececec; */
}
.blog-title-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 0 auto;
    padding-left: 0;
}
.blog-title-main {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.blog-title-bar {
    display: inline-block;
    width: 4px;
    height: 32px;
    background: #1a9cf3;
    margin-right: 12px;
    border-radius: 2px;
}
.blog-title-text {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
}
.blog-title-sub {
    font-size: 1.08rem;
    color: #888;
    margin-left: 16px;
    margin-top: 2px;
}
.blog-content-left {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.blog-card {
    background: none;
    border: none;
    box-shadow: none;
    overflow: visible;
    display: flex;
    padding: 0;
}
.blog-card-row {
    flex-direction: row;
    height: auto;
    margin-bottom: 8px;
}
.blog-card-col {
    flex-direction: column;
    height: auto;
    margin-bottom: 32px;
}
.blog-card-img {
    width: 260px;
    height: 190px;
    object-fit: cover;
    background: none;
    flex-shrink: 0;
    margin-right: 24px;
}
.blog-card-col .blog-card-img {
    width: 100%;
    height: 420px;
    margin: 0 0 16px 0;
    border-radius: 15px;
}
.blog-card-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.blog-card-info h3 {
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #444;
}
.blog-card-info p {
    font-size: 0.98rem;
    color: #7b7b7b;
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.blog-card-meta {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
    color: #888;
    align-items: center;
}
.blog-card-readmore {
    color: #1a6ed8;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 8px;
    cursor: pointer;
}

.blog-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.blog-search {
    margin-bottom: 24px;
}
.blog-search input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid #eee;
    font-size: 1rem;
    outline: none;
    background: none;
}
/* .blog-side-section {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 18px 0;
    margin-bottom: 12px;
}
.blog-side-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
} */
.blog-side-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.blog-side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #222;
    cursor: pointer;
    font-weight: 400;
}
.side-avatar {
    width: 32px;
    height: 32px;
    border-radius: 25%;
    object-fit: cover;
    margin-right: 2px;
    background: none;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.blog-tags span {
    display: inline-block;
    border: 1.5px solid #ececec;
    border-radius: 999px;
    padding: 4px 18px;
    background: none;
    color: #888;
    font-size: 14px;
    margin-bottom: 2px;
    margin-right: 2px;
    line-height: 1.6;
    font-weight: 400;
}
.blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-categories li {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 400;
}


