.blogs-hero h1, .regular-blogs-section h2 {
    font-weight: 700;
    font-family: Poppins, sans-serif;
}
.blogs-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}
.blogs-hero p {
    font-size: 18px;
    opacity: .95;
    max-width: 600px;
    margin: 0 auto;
}
.blogs-container {
    padding: 80px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.rx-banner h4, .rx-banner p {
    text-align: center;
}
.hero-blogs-section {
    margin-bottom: 60px;
}
.hero-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card-hero {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
    transition: .4s;
    cursor: pointer;
    position: relative;
    height: 400px;
}
.blog-card-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}
.btn-read-more:hover, .btn-read-more:hover i {
    transform: translateX(5px);
}
.blog-card-hero .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.blog-card-hero:hover .blog-image {
    transform: scale(1.05);
}
.blog-card-hero .blog-image-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%}
.blog-card-hero .blog-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(48, 2, 29, .4);
    z-index: 1;
}
.blog-card-hero .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: #fff;
}
.blog-date {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    opacity: .9;
}
.blog-card .blog-excerpt, .blog-card-hero h3, .blog-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-hero, .blog-card-link {
    animation: .6s forwards fadeInUp;
    opacity: 0;
}
.blog-card-hero h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
}
.blog-excerpt {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: .3s;
    border: 2px solid #eb9000;
}
.btn-read-more:hover {
    background: #eb9000;
    color: #fff;
}
.btn-read-more i {
    transition: transform .3s;
}
.regular-blogs-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}
.regular-blogs-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #eb9000;
    margin: 15px auto 0;
    border-radius: 2px;
}
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card-link {
    text-decoration: none;
    display: block;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    transition: .3s;
    border-bottom: 3px solid #eb9000;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}
.blog-card .blog-image {
    width: 100%;
    /* height: 200px; */
    height: auto;
    object-fit: cover;
}
.blog-card .blog-content {
    padding: 20px;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color .3s;
}
.blog-card:hover h3 {
    color: #eb9000;
}
.blog-card .blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
}
.blog-card .blog-date {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}
.blogs-loading, .empty-blogs {
    text-align: center;
    padding: 100px 20px;
}
.empty-blogs i {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 30px;
}
.empty-blogs h3 {
    font-size: 28px;
    color: #666;
    margin-bottom: 15px;
}
.empty-blogs p {
    font-size: 16px;
    color: #999;
}
.blogs-loading .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #eb9000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: 1s linear infinite spin;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% {
    transform: rotate(0);
}
100% {
    transform: rotate(360deg);
}
}@media (max-width:1024px) {
    .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
}
.blogs-hero h1 {
    font-size: 40px;
}
.regular-blogs-section h2 {
    font-size: 32px;
}
}@media (max-width:768px) {
    .blogs-hero {
    padding: 60px 0 40px;
}
.blogs-hero h1 {
    font-size: 32px;
}
.blogs-hero p {
    font-size: 16px;
}
.blogs-container {
    padding: 50px 0;
}
.hero-blogs-section {
    margin-bottom: 40px;
}
.blogs-grid, .hero-blogs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
.regular-blogs-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}
.blog-card h3, .blog-card-hero h3 {
    font-size: 20px;
}
.blog-card .blog-image {
    /* height: 200px; */
    height: auto;
}
}@media (max-width:480px) {
    .blogs-hero h1 {
    font-size: 28px;
}
.blog-card .blog-content, .blog-card-hero .blog-content {
    padding: 20px;
}
.btn-read-more {
    padding: 10px 20px;
    font-size: 13px;
}
.rx-banner h4 {
    font-size: 1rem;
}
.rx-banner p {
    font-size: 1rem!important;
}
}.blog-card-hero:first-child, .blog-card-link:first-child {
    animation-delay: .1s;
}
.blog-card-hero:nth-child(2), .blog-card-link:nth-child(2) {
    animation-delay: .2s;
}
.blog-card-hero:nth-child(3), .blog-card-link:nth-child(3) {
    animation-delay: .3s;
}
.blog-card-hero:nth-child(4), .blog-card-link:nth-child(4) {
    animation-delay: .4s;
}
.blog-card-link:nth-child(5) {
    animation-delay: .5s;
}
.blog-card-link:nth-child(6) {
    animation-delay: .6s;
}
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
