.blog-meta, .blog-meta span {
    align-items: center;
    display: flex;
}
.blog-content-wrapper h2, .blog-content-wrapper h3, .blog-main-content .blog-title {
    font-family: Poppins, sans-serif;
    color: #333;
}
.blog-detail-hero {
    background: linear-gradient(135deg, #eb9000 0, #ff6b00 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255, 255, 255, 0.1)" d="M0, 96L48, 112C96, 128, 192, 160, 288, 160C384, 160, 480, 128, 576, 112C672, 96, 768, 96, 864, 112C960, 128, 1056, 160, 1152, 160C1248, 160, 1344, 128, 1392, 112L1440, 96L1440, 320L1392, 320C1344, 320, 1248, 320, 1152, 320C1056, 320, 960, 320, 864, 320C768, 320, 672, 320, 576, 320C480, 320, 384, 320, 288, 320C192, 320, 96, 320, 48, 320L0, 320Z"></path></svg>') bottom center/cover no-repeat;
    opacity: .5;
}
.blog-detail-hero .container {
    position: relative;
    z-index: 1;
}
.blog-meta {
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.blog-meta span {
    gap: 8px;
    font-size: 14px;
    opacity: .95;
}
.blog-meta i {
    font-size: 16px;
}
.blog-detail-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Poppins, sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    transition: opacity .3s;
}
.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}
.breadcrumb span {
    opacity: .7;
}
.blog-detail-container {
    padding: 60px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-main-content .blog-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 1rem;
}
.blog-main-content .blog-description {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #eb9000;
    border-radius: 8px;
}
.blog-main-content .blog-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-style: italic;
}
.blog-detail-wrapper {
    display: grid;
    gap: 40px;
}
.blog-main-content {
    border-radius: 15px;
    overflow: hidden;
}
.blog-featured-image {
    width: 100%;
    /* object-fit: cover; */
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.blog-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    line-height: 1.3;
}
.blog-content-wrapper h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 35px 0 18px;
}
.blog-content-wrapper h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}
.blog-content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.blog-content-wrapper ol, .blog-content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}
.blog-content-wrapper li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}
.blog-content-wrapper a {
    color: #eb9000;
    text-decoration: underline;
    transition: color .3s;
}
.category-item a, .share-btn {
    display: flex;
    transition: .3s;
}
.blog-content-wrapper a:hover {
    color: #d68000;
}
.blog-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}
.blog-content-wrapper blockquote {
    border-left: 4px solid #eb9000;
    padding: 20px 30px;
    margin: 30px 0;
    background: #fff8f0;
    border-radius: 8px;
    font-style: italic;
    color: #666;
}
.blog-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.blog-content-wrapper table th {
    background: #eb9000;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
.blog-content-wrapper table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.blog-content-wrapper table tr:nth-child(2n) {
    background: #f9f9f9;
}
.blog-content-wrapper code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: #e83e8c;
}
.blog-content-wrapper pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}
.blog-content-wrapper pre code {
    background: 0 0;
    color: inherit;
    padding: 0;
}
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .08);
}
.sidebar-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #eb9000;
    font-family: Poppins, sans-serif;
}
.categories-list, .recent-posts-list {
    list-style: none;
}
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.recent-post-item:last-child {
    border-bottom: none;
}
.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.recent-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}
.recent-post-content h4 a, .related-post-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color .3s;
}
.recent-post-content h4 a:hover, .related-post-content h3 a:hover {
    color: #eb9000;
}
.recent-post-date, .related-post-date {
    font-size: 13px;
    color: #999;
}
.category-item {
    margin-bottom: 12px;
}
.category-item a {
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
}
.category-item a:hover {
    background: #eb9000;
    color: #fff;
    transform: translateX(5px);
}
.category-count {
    background: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}
.btn-cta, .share-btn {
    text-decoration: none;
    border-radius: 8px;
}
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-btn {
    flex: 1;
    min-width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.btn-cta:hover, .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}
.share-btn.facebook {
    background: #3b5998;
}
.share-btn.twitter {
    background: #1da1f2;
}
.share-btn.linkedin {
    background: #0077b5;
}
.share-btn.whatsapp {
    background: #25d366;
}
.cta-widget {
    background: linear-gradient(135deg, #eb9000 0, #ff6b00 100%);
    color: #fff;
    text-align: center;
}
.btn-cta, .related-post-card {
    background: #fff;
    transition: .3s;
}
.cta-widget h3 {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}
.cta-widget p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    color: #eb9000;
    font-weight: 600;
}
.related-posts-section {
    padding-top: 60px;
}
.blog-detail-rx-banner-contact h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}
.related-posts-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-family: Poppins, sans-serif;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.related-post-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    border-bottom: 3px solid #eb9000;
}
.related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.related-post-content {
    padding: 20px;
}
.related-post-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
@media (max-width:1024px) {
    .blog-detail-wrapper {
    grid-template-columns: 1fr;
}
.blog-sidebar {
    order: -1;
}
.related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
}
}@media (max-width:768px) {
    .blog-detail-hero {
    padding: 60px 0 40px;
}
.blog-detail-hero h1 {
    font-size: 32px;
}
.blog-meta {
    gap: 15px;
}
.blog-detail-container {
    padding: 50px 0;
}
.blog-content-wrapper {
    padding: 30px 20px;
}
.blog-featured-image {
    height: auto;
}
.blog-content-wrapper h2, .related-posts-section h2 {
    font-size: 26px;
}
.blog-content-wrapper h3 {
    font-size: 22px;
}
.blog-content-wrapper li, .blog-content-wrapper p {
    font-size: 16px;
}
.related-posts-grid {
    grid-template-columns: 1fr;
}
.sidebar-widget {
    padding: 20px;
}
}@media (max-width:480px) {
    .blog-detail-hero h1 {
    font-size: 26px;
}
.blog-meta {
    flex-direction: column;
    gap: 10px;
}
.share-buttons {
    flex-direction: column;
}
.share-btn {
    width: 100%}
.blog-main-content .blog-title {
    font-size: 20px;
}
}
