section.entry-content{
	margin-bottom: 20px;
}

.blog-card {
      background-color: #ffeddbff;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-bottom: 2px solid #023354;
}
.blog-card .card-body {
    padding: 0.75rem;
}
.blog-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: normal;
}
.blog-card .card-title a {
    color: #023354 !important;
    font-size: large;
}
.blog-card .card-text {
    color: #023354;
    font-size: 0.95rem;
    line-height: 1.5;
}
.blog-card .text-muted {
    color: #023354 !important;
    font-size: 0.85rem;
}
.blog-card .btn {
    background-color: #023354;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: unset;
    text-transform: unset;
    font-weight: unset;
}
.blog-card .btn:hover {
    background-color: #00568f;
}
.blog-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    position: relative;
}
.blog-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #023354;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}
.blog-header h1::after {
    content: '';
    top: 45px;;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background: radial-gradient(circle at 90% 100%, #f4a261, transparent 70%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.blog-header .lead {
    color: #023354;
}
.read-info {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.15rem;
}
.nav-links {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #333;
}
.nav-links a {
    color: #023354;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #023354;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: transparent;
}
.nav-links a:hover {
    color: #023354;
    background-color: #f4a261;
    border-color: #f4a261;
}
@media (max-width: 768px) {
    .blog-card img {
        height: 150px;
    }
    .blog-card .card-title {
        font-size: 1.25rem;
    }
    .blog-header h1 {
            font-size: 2rem;
    }
    .blog-header h1::after {
        width: 70%;
    }
}
.banner {
    position: relative;
    height: 50vh;
    background-color: #023354;
    overflow: hidden;
    border-radius: 20px 20px;
    margin-bottom: 2rem;
}
.banner .banner-img-container {
    width: 100%;
    height: 100%;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.banner .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 2rem;
    width: 100%;
}
.banner .overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f88f19;
    background-color: rgba(100, 100, 100, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}
.article-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff8f1;
    border-radius: 20px;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		/* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
}
.article-content-wrapper h2, .article-content-wrapper h3 {
    color: #f88f19;
    margin-top: 1rem;
}
.article-content-wrapper p {
    color: #023354;
    font-size: 1.1rem;
}
.meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
}
.meta-info .author {
    color: #f88f19;
}
.meta-info .read-info {
    color: #6c757d;
}
.categories {
            text-align: center;
            margin-bottom: 1.5rem;
}
.categories a {
    color: #f88f19;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 1rem;
		border: 2px solid #f88f19;
		padding: 0.5rem 1rem;
		border-radius: 20px;
}
.categories a:hover {
    text-decoration: underline;
}
.content-line {
    border-bottom: 1px solid #f88f19; /* Visible line with primary color */
    margin: 2rem 0;
}
.tags {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tags .badge {
    background-color: #023354;
    color: #f88f19;
    transition: background-color 0.3s ease;
}
.tags .badge:hover {
    background-color: #f88f19;
    color: #fff;
}
@media (max-width: 768px) {
    .banner {
        height: 40vh;
    }
    .banner .overlay h1 {
        font-size: 2rem;
    }
}