
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

body {
    font-family: Inter, system-ui;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.heading {

    padding-top: 30px;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    z-index: 1;
    position: relative;
}

.svg-container {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.post-cont-wrap {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 60px;
    margin-top: 30px;
}

.post p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 22px;
}

.post strong {
    color: #222;
}

.blog-search {
    margin-bottom: 28px;
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.blog-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f2d52;
    border-bottom: 2px solid #b4e610ff;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.blog-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #3b4a6b;
    padding-bottom: 18px;
}

.blog-post-item+.blog-post-item {
    margin-top: 18px;
}

.blog-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 15%;
    object-fit: cover;
    flex-shrink: 0;
    margin-top: 4px;
}

.blog-post-item span {
    font-size: 1rem;
    line-height: 1.4;
    color: #000;

}

@media (max-width: 900px) {
    .post-cont-wrap {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}
