:root {
    --dark: #0e1a33;
    --dark-surface: #1b2a4a;
    --dark-active: #243861;
    --accent: #2a8fa0;
    --accent-hover: #35a8b8;
    --accent-green: #3d8b37;
    --white: #ffffff;
    --light-bg: #f4f8f9;
    --sidebar-bg: #eaf3f5;
    --heading-color: #1b2a4a;
    --body-color: #4a5568;
    --muted-color: #64748b;
    --border-color: #dce8ec;
    --card-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    --card-hover-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all .3s ease
}

body {
    font-family: Inter, sans-serif;
    color: var(--body-color);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--accent-hover);
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

.section-padding {
    padding: 60px 0
}

.section-padding-sm {
    padding: 40px 0
}

.accent-text {
    color: var(--accent) !important
}

.bg-dark-theme {
    background: var(--dark) !important
}

.bg-dark-surface {
    background: var(--dark-surface) !important
}

.bg-light-section {
    background: var(--light-bg)
}

.text-muted-theme {
    color: var(--muted-color) !important
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: .75rem
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%)
}

.navbar-dark-theme {
    background: var(--white) !important;
    padding: 4px 0;
    transition: var(--transition);
    z-index: 1050;
    border-bottom: 1px solid var(--border-color)
}

.navbar-dark-theme.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1)
}

.navbar-dark-theme .navbar-brand img {
    height: 60px;
    transition: var(--transition)
}

.navbar-dark-theme .nav-link {
    color: var(--heading-color) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition)
}

.navbar-dark-theme .nav-link.active,
.navbar-dark-theme .nav-link:hover {
    color: var(--accent) !important;
    background: var(--light-bg)
}

.navbar-dark-theme .navbar-toggler {
    border: none;
    padding: .25rem .5rem
}

.navbar-dark-theme .navbar-toggler:focus {
    box-shadow: none
}

.navbar-dark-theme .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827,42,74,.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.top-bar {
    background: var(--dark);
    padding: 6px 0;
    font-size: .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.top-bar a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition)
}

.top-bar a:hover {
    color: var(--accent)
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    margin-right: 5px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7)
}

.top-bar .social-icons a:hover {
    background: var(--accent);
    color: #fff
}

.top-bar .dropdown-menu {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    min-width: 180px
}

.top-bar .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    padding: .4rem 1rem
}

.top-bar .dropdown-menu .dropdown-item:hover {
    background: var(--dark-active);
    color: #fff
}

#google_translate_element {
    display: inline-block;
    vertical-align: middle
}

#google_translate_element select {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .75rem
}

.goog-te-gadget {
    font-size: 0 !important
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important
}

.goog-te-gadget-icon {
    display: none !important
}

.nav-search-btn {
    background: 0 0;
    border: none;
    color: var(--heading-color);
    font-size: 1rem;
    padding: .5rem .75rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition)
}

.nav-search-btn:hover {
    background: var(--light-bg);
    color: var(--accent)
}

.offcanvas-dark {
    background: var(--dark) !important;
    color: #fff;
    max-width: 300px
}

.offcanvas-dark .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.offcanvas-dark .btn-close {
    filter: invert(1)
}

.offcanvas-dark .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    padding: .75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-weight: 500
}

.offcanvas-dark .nav-link:hover {
    background: var(--dark-active);
    color: #fff !important
}

.hero-section {
    position: relative
}

.hero-slider .single-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius)
}

.hero-slider .single-slider .trend-top-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius)
}

.hero-slider .single-slider .trend-top-img img {
    width: 100%;
    display: block;
    border-radius: var(--radius)
}

.hero-slider .single-slider .trend-top-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    border-radius: 0 0 var(--radius) var(--radius)
}

.hero-slider .single-slider .trend-top-cap h2 {
    font-size: 1.5rem;
    margin: 0
}

.hero-slider .single-slider .trend-top-cap h2 a {
    color: #fff;
    text-decoration: none
}

.hero-slider .single-slider .trend-top-cap p {
    color: rgba(255, 255, 255, .9);
    font-size: .85rem;
    margin: .5rem 0 0
}

.hero-slider {
    position: relative
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    line-height: 1
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent)
}

.hero-arrow.slick-prev {
    left: 15px
}

.hero-arrow.slick-next {
    right: 15px
}

.sidebar-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 15px
}

.sidebar-card img {
    width: 100%;
    display: block;
    transition: transform .5s ease
}

.sidebar-card:hover img {
    transform: scale(1.05)
}

.sidebar-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8))
}

.sidebar-card .card-overlay h3 {
    font-size: .9rem;
    margin: 0;
    line-height: 1.4
}

.sidebar-card .card-overlay h3 a {
    color: #fff
}

.sidebar-card .card-overlay p {
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    margin: .25rem 0 0
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%
}

.blog-card-col {
    margin-bottom: 30px
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow)
}

.blog-card .card-img-wrap {
    overflow: hidden;
    position: relative
}

.blog-card .card-img-wrap img {
    width: 100%;
    display: block;
    transition: transform .5s ease
}

.blog-card:hover .card-img-wrap img {
    transform: scale(1.08)
}

.blog-card .card-img-wrap .card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.blog-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-card .card-body h2,
.blog-card .card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card .card-body h2 a,
.blog-card .card-body h3 a {
    color: var(--heading-color)
}

.blog-card .card-body h2 a:hover,
.blog-card .card-body h3 a:hover {
    color: var(--accent)
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted-color);
    margin-top: auto;
    padding-top: .75rem
}

.blog-card .card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1
}

.blog-card .card-meta i {
    color: var(--accent);
    font-size: .75rem;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: middle
}

.page-header {
    background: var(--dark);
    padding: 3rem 0;
    margin-bottom: 0
}

.page-header h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0
}

.page-header .breadcrumb {
    background: 0 0;
    padding: 0;
    margin: .5rem 0 0
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, .6)
}

.page-header .breadcrumb-item.active {
    color: var(--accent)
}

.single-post-content {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow)
}

.single-post-content .feature-img img {
    width: 100%;
    height: auto
}

.single-post-content .post-body {
    padding: 2rem
}

.single-post-content .post-body h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.single-post-content .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color)
}

.single-post-content .post-meta li {
    list-style: none;
    font-size: .85rem;
    color: var(--muted-color)
}

.single-post-content .post-meta li i {
    margin-right: 5px;
    color: var(--accent)
}

.single-post-content .blog_description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--body-color)
}

.single-post-content .blog_description h1,
.single-post-content .blog_description h2,
.single-post-content .blog_description h3,
.single-post-content .blog_description h4 {
    margin-top: 1.5rem;
    margin-bottom: .75rem
}

.single-post-content .blog_description img {
    border-radius: var(--radius-sm);
    margin: 1rem 0
}

.single-post-content .blog_description blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic
}

.share-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap
}

.share-bar span {
    font-weight: 600;
    font-size: .9rem;
    color: var(--heading-color);
    margin-right: .25rem
}

.share-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--body-color);
    font-size: .9rem;
    transition: var(--transition)
}

.share-bar a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px)
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 1.5rem 0
}

.post-navigation .nav-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    max-width: 48%
}

.post-navigation .nav-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0
}

.post-navigation .nav-item p {
    font-size: .75rem;
    color: var(--accent);
    margin: 0 0 .25rem;
    font-weight: 600;
    text-transform: uppercase
}

.post-navigation .nav-item h3 {
    font-size: .85rem;
    margin: 0;
    line-height: 1.4
}

.post-navigation .nav-item h3 a {
    color: var(--heading-color)
}

.post-navigation .nav-item h3 a:hover {
    color: var(--accent)
}

.comments-section {
    margin-top: 2rem
}

.comments-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color)
}

.comment-item .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0
}

.comment-item .comment-body p.comment-text {
    margin: 0 0 .5rem;
    font-size: .9rem;
    color: var(--body-color)
}

.comment-item .comment-body h3 {
    font-size: .85rem;
    font-weight: 600;
    display: inline;
    margin-right: .75rem
}

.comment-item .comment-body .comment-date {
    font-size: .8rem;
    color: var(--muted-color)
}

.comment-form-section {
    margin-top: 2rem;
    border-radius: var(--radius)
}

.comment-form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow)
}

.sidebar-widget h2,
.sidebar-widget h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block
}

.sidebar-widget .search-form {
    display: flex
}

.sidebar-widget .search-form input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: .5rem .75rem;
    font-size: .85rem;
    outline: 0
}

.sidebar-widget .search-form input:focus {
    border-color: var(--accent)
}

.sidebar-widget .search-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: .5rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition)
}

.sidebar-widget .search-form button:hover {
    background: var(--accent-hover)
}

.sidebar-widget .category-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.sidebar-widget .category-list li {
    border-bottom: 1px solid var(--border-color)
}

.sidebar-widget .category-list li:last-child {
    border: none
}

.sidebar-widget .category-list li a {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    color: var(--body-color);
    font-size: .9rem
}

.sidebar-widget .category-list li a:hover {
    color: var(--accent)
}

.sidebar-widget .category-list li a span {
    color: var(--muted-color);
    font-size: .8rem
}

.sidebar-widget .recent-post {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center
}

.sidebar-widget .recent-post:first-of-type {
    padding-top: 0
}

.sidebar-widget .recent-post:last-child {
    border: none;
    padding-bottom: 0
}

.sidebar-widget .recent-post img {
    width: 75px;
    min-width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0
}

.sidebar-widget .recent-post>div {
    flex: 1;
    min-width: 0
}

.sidebar-widget .recent-post h3 {
    font-size: .85rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sidebar-widget .recent-post h3 a {
    color: var(--heading-color)
}

.sidebar-widget .recent-post h3 a:hover {
    color: var(--accent)
}

.sidebar-widget .recent-post .post-date,
.sidebar-widget .recent-post .post-views {
    font-size: .75rem;
    color: var(--muted-color)
}

.sidebar-widget .recent-post .post-views {
    margin-left: 6px
}

.cta-widget {
    background: linear-gradient(135deg, var(--dark) 0, var(--accent) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem
}

.cta-widget h2 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: .75rem
}

.cta-widget p {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--white)
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--accent);
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none
}

.cta-btn:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 143, 160, .4)
}

.related-section {
    background: var(--light-bg);
    padding: 3rem 0
}

.related-section .section-title {
    margin-bottom: 1.5rem
}

.related-section .slick-track {
    display: flex !important
}

.related-section .slick-slide {
    height: auto !important
}

.related-section .slick-slide>div {
    height: 100%
}

.related-section .weekly2-single {
    padding: 0 10px;
    height: 100%
}

.related-nav-btns {
    display: flex;
    gap: .5rem
}

.related-nav-btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--heading-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.related-nav-btns button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 143, 160, .35)
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 22px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition)
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(42, 143, 160, .3)
}

.btn-outline-accent {
    background: 0 0;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: .5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition)
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff
}

.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 12px 22px;
    font-size: 1rem;
    transition: var(--transition)
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    box-shadow: 0 5px 20px rgba(42, 143, 160, .3) !important
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: .6rem .9rem;
    font-size: .9rem;
    transition: var(--transition)
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(42, 143, 160, .15)
}

textarea.form-control {
    min-height: calc(7.5em + .75rem + calc(var(--bs-border-width) * 2))
}

.form-label,
label.form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--heading-color);
    margin-bottom: .4rem
}

.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: .6rem .9rem;
    font-size: .9rem
}

.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(42, 143, 160, .15)
}

.help-block {
    font-size: .8rem;
    color: #dc3545;
    margin-top: .25rem
}

.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: var(--light-bg)
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    border-top: 4px solid var(--accent)
}

.auth-card .auth-card-body {
    padding: 2.5rem
}

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem
}

.auth-card p {
    text-align: center;
    color: var(--muted-color);
    font-size: .9rem;
    margin-bottom: 1.5rem
}

.auth-card hr {
    border-color: var(--border-color);
    margin: 1.5rem 0
}

.auth-card .form-group {
    margin-bottom: 1rem
}

.auth-card .btn-primary {
    width: 100%;
    padding: 22px 22px;
    font-size: 1rem
}

.auth-card .auth-footer {
    text-align: center;
    font-size: .9rem;
    color: var(--muted-color)
}

.auth-card .auth-footer a {
    color: var(--accent);
    font-weight: 600
}

.dashboard-section {
    padding: 2.5rem 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px)
}

.profile-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: sticky;
    top: 90px
}

.profile-sidebar .sidebar-header {
    background: var(--dark-surface);
    padding: 1.25rem;
    text-align: center
}

.profile-sidebar .sidebar-header i {
    font-size: 2rem;
    color: var(--accent)
}

.profile-sidebar .sidebar-header h5 {
    color: #fff;
    font-size: .95rem;
    margin: .5rem 0 0
}

.profile-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.profile-sidebar ul li {
    border-bottom: 1px solid var(--border-color)
}

.profile-sidebar ul li:last-child {
    border: none
}

.profile-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.25rem;
    color: var(--body-color);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition)
}

.profile-sidebar ul li a i {
    width: 20px;
    text-align: center;
    color: var(--muted-color);
    font-size: .9rem
}

.profile-sidebar ul li a.active,
.profile-sidebar ul li a:hover {
    background: var(--light-bg);
    color: var(--accent)
}

.profile-sidebar ul li a.active i,
.profile-sidebar ul li a:hover i {
    color: var(--accent)
}

.dashboard-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem
}

.dashboard-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--border-color)
}

.stat-card {
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    transition: var(--transition)
}

.stat-card:hover {
    transform: translateY(-4px)
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.stat-card p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0
}

.stat-card.bg-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover))
}

.stat-card.bg-info-gradient {
    background: linear-gradient(135deg, #0dcaf0, #0aa2c0)
}

.stat-card.bg-warning-gradient {
    background: linear-gradient(135deg, #ffc107, #e0a800)
}

.dashboard-content .table {
    font-size: .9rem
}

.dashboard-content .table thead th {
    background: var(--dark-surface);
    color: #fff;
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    padding: .75rem
}

.dashboard-content .table tbody td {
    padding: .75rem;
    vertical-align: middle;
    border-color: var(--border-color)
}

.profile-info-row {
    display: flex;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border-color)
}

.profile-info-row:last-child {
    border: none
}

.profile-info-row .label {
    font-weight: 600;
    color: var(--heading-color);
    min-width: 140px;
    font-size: .9rem
}

.profile-info-row .value {
    color: var(--body-color);
    font-size: .9rem
}

.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #2ecc71, var(--accent));
    background-size: 200% 100%;
    animation: accentShimmer 4s ease infinite
}

@keyframes accentShimmer {
    0%,100% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
}

.footer-dark {
    background: var(--dark);
    color: rgba(255, 255, 255, .85);
    padding-top: 3.5rem
}

.footer-dark h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .75rem
}

.footer-dark h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.footer-dark p {
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75)
}

.footer-dark .footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1)
}

.footer-dark .footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-dark .footer-links li {
    margin-bottom: .5rem
}

.footer-dark .footer-links li a {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    transition: var(--transition);
    position: relative;
    padding-left: 0
}

.footer-dark .footer-links li a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: .6rem;
    color: var(--accent);
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition)
}

.footer-dark .footer-links li a:hover {
    color: var(--accent);
    padding-left: 14px
}

.footer-dark .footer-links li a:hover::before {
    opacity: 1;
    left: 0
}

.footer-dark .footer-post {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-dark .footer-post:last-child {
    border: none
}

.footer-post-img {
    display: block;
    width: 75px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0
}

.footer-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.footer-post-img:hover img {
    transform: scale(1.1)
}

.footer-dark .footer-post h4 {
    font-size: .8rem;
    font-weight: 500;
    margin: 0 0 .25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.footer-dark .footer-post h4 a {
    color: rgba(255, 255, 255, .8)
}

.footer-dark .footer-post h4 a:hover {
    color: var(--accent)
}

.footer-dark .footer-post small {
    color: rgba(255, 255, 255, .7);
    font-size: .75rem
}

.footer-social {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7);
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 178, 169, .4)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
    margin-top: 2.5rem
}

.footer-bottom p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7)
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px
}

.search-modal .modal-content {
    background: var(--dark);
    border: none;
    border-radius: var(--radius)
}

.search-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem 1.5rem
}

.search-modal .modal-header .modal-title {
    color: #fff;
    font-size: 1rem
}

.search-modal .modal-body {
    padding: 1.5rem
}

.search-modal-form {
    display: flex;
    gap: 0
}

.search-modal-form input {
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: none;
    color: #fff;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: .75rem 1rem;
    font-size: 1rem
}

.search-modal-form input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.search-modal-form input:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(42, 143, 160, .2)
}

.search-modal-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
    padding: .75rem 1.25rem
}

.search-modal .btn-close {
    filter: invert(1)
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0
}

.pagination-wrapper .pagination {
    display: flex;
    gap: .25rem
}

.pagination-wrapper .pagination li {
    list-style: none
}

.pagination-wrapper .pagination li a,
.pagination-wrapper .pagination li span,
.pagination-wrapper .pagination li strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .5rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none
}

.pagination-wrapper .pagination li a {
    background: var(--white);
    color: var(--body-color);
    border: 1px solid var(--border-color)
}

.pagination-wrapper .pagination li a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.pagination-wrapper .pagination li span.active,
.pagination-wrapper .pagination li strong,
.pagination-wrapper .pagination li.active a {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent)
}

.footer-ad-section {
    background: var(--light-bg);
    padding: 2rem 0;
    text-align: center
}

.footer-ad-section img {
    max-width: 100%;
    border-radius: var(--radius-sm)
}

.floating-create-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(42, 143, 160, .35);
    transition: var(--transition)
}

.floating-create-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(42, 143, 160, .45)
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    height: 100%
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-bottom: 3px solid var(--accent)
}

.category-card i {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: .75rem
}

.category-card h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: .25rem
}

.category-card span {
    font-size: .8rem;
    color: var(--muted-color)
}

.newsletter-section {
    background: var(--dark);
    padding: 4rem 0;
    color: #fff
}

.newsletter-section .newsletter-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block
}

.newsletter-section h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.newsletter-section p {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.newsletter-section .alert {
    border-radius: var(--radius-sm);
    font-size: .9rem;
    margin-bottom: 1.25rem
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: none;
    color: #fff;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .9rem;
    outline: 0
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .6)
}

.newsletter-form input:focus {
    border-color: var(--accent)
}

.newsletter-form button {
    background: #228090;
    color: #fff;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: .75rem 1.5rem;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition)
}

.newsletter-form button:hover {
    background: var(--accent)
}

@media (max-width:575.98px) {
    .newsletter-form {
        flex-direction: column;
        gap: .5rem
    }

    .newsletter-form input {
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-radius: var(--radius-sm)
    }

    .newsletter-form button {
        border-radius: var(--radius-sm)
    }
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    margin-bottom: .75rem;
    overflow: hidden
}

.faq-item .accordion-button {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--heading-color);
    background: var(--white);
    padding: 1rem 1.25rem
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: #228090;
    box-shadow: none
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color)
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a8fa0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.faq-item .accordion-body {
    font-size: .9rem;
    color: var(--body-color);
    line-height: 1.8;
    padding: 1rem 1.25rem
}

.faq-item .accordion-body a {
    color: var(--accent);
    font-weight: 500
}

.static-page-content {
    padding: 3rem 0
}

.static-page-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: .75rem
}

.static-page-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: .5rem
}

.static-page-content p {
    margin-bottom: .75rem;
    line-height: 1.8
}

.static-page-content ol,
.static-page-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

.static-page-content ol li,
.static-page-content ul li {
    margin-bottom: .5rem;
    line-height: 1.7
}

.static-page-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic
}

.about-cta-section {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative
}

.about-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, .7)
}

.about-cta-section .container {
    position: relative;
    z-index: 1
}

.about-cta-section img {
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2)
}

.about-cta-section h2 {
    color: #fff;
    font-size: 1.75rem
}

.about-cta-section span {
    color: var(--accent);
    font-weight: 600
}

.about-cta-section p {
    color: rgba(255, 255, 255, .8)
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow)
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: .5rem
}

.contact-info-card p {
    font-size: .9rem;
    color: var(--muted-color);
    margin: 0
}

.contact-info-card p a {
    color: var(--accent)
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--accent);
    padding: 2rem
}

.contact-form-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color)
}

.contact-detail-list {
    margin-bottom: 1rem
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border-color)
}

.contact-detail-item:last-child {
    border-bottom: none
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.contact-detail-item span {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: var(--muted-color);
    margin-bottom: .15rem
}

.contact-detail-item a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: .95rem
}

.contact-detail-item a:hover {
    color: var(--accent)
}

.contact-social-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.contact-social-btns a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--heading-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition)
}

.contact-social-btns a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(42, 143, 160, .35)
}

.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
    background: var(--light-bg)
}

.error-section h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: .5rem
}

.error-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.error-section p {
    color: var(--muted-color);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.badge {
    font-weight: 600;
    font-size: .75rem;
    padding: .35em .65em
}

@media (max-width:991.98px) {
    .hero-slider .single-slider .trend-top-cap h2 {
        font-size: 1.2rem
    }

    .page-header h1 {
        font-size: 1.5rem
    }

    .single-post-content .post-body h1 {
        font-size: 1.4rem
    }

    .section-title {
        font-size: 1.4rem
    }
}

@media (max-width:767.98px) {
    .hero-slider .single-slider .trend-top-cap {
        padding: 1rem
    }

    .hero-slider .single-slider .trend-top-cap h2 {
        font-size: 1rem
    }

    .page-header {
        padding: 2rem 0
    }

    .page-header h1 {
        font-size: 1.25rem
    }

    .section-padding {
        padding: 40px 0
    }

    .single-post-content .post-body {
        padding: 1.25rem
    }

    .single-post-content .post-body h1 {
        font-size: 1.2rem
    }

    .auth-card .auth-card-body {
        padding: 1.5rem
    }

    .dashboard-content {
        padding: 1.25rem
    }

    .post-navigation {
        flex-direction: column
    }

    .post-navigation .nav-item {
        max-width: 100%
    }

    .comment-form-section {
        padding: 1.25rem
    }

    .error-section h1 {
        font-size: 4rem
    }

    .footer-dark {
        padding-top: 2.5rem
    }

    .footer-bottom .row > div {
        text-align: center !important
    }
}

@media (max-width:575.98px) {
    .blog-card .card-meta {
        flex-direction: column;
        gap: .25rem
    }

    .share-bar {
        justify-content: center
    }

    .stat-card {
        margin-bottom: 1rem
    }
}

.slider-active .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none
}

.slider-active .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: var(--transition)
}

.slider-active .slick-dots li.slick-active button {
    background: var(--accent);
    transform: scale(1.2)
}

.search-model-box {
    display: none !important
}

.nice-select {
    display: none !important
}

nav.blog-pagination ul.pagination li {
    list-style: none
}

.fa,
.fab,
.far,
.fas {
    vertical-align: middle
}

.goog-te-banner-frame {
    display: none !important
}

body {
    top: 0 !important
}

.write-for-us-img {
    border-radius: var(--radius);
    box-shadow: var(--card-shadow)
}

.search-result-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition)
}

.search-result-item:hover {
    box-shadow: var(--card-hover-shadow)
}

.search-result-item .result-img {
    position: relative;
    overflow: hidden
}

.search-result-item .result-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s ease
}

.search-result-item:hover .result-img img {
    transform: scale(1.05)
}

.search-result-item .result-img .date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: .4rem .6rem;
    border-radius: var(--radius-sm);
    line-height: 1.2
}

.search-result-item .result-img .date-badge h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0
}

.search-result-item .result-img .date-badge p {
    font-size: .7rem;
    margin: 0;
    text-transform: uppercase
}

.search-result-item .result-body {
    padding: 1.25rem
}

.search-result-item .result-body h2 {
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.search-result-item .result-body h2 a {
    color: var(--heading-color)
}

.search-result-item .result-body h2 a:hover {
    color: var(--accent)
}

.search-result-item .result-body p {
    font-size: .9rem;
    color: var(--muted-color);
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.search-result-item .result-meta {
    display: flex;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted-color)
}

.search-result-item .result-meta i {
    color: var(--accent);
    margin-right: 4px
}

.prev-image {
    margin-top: .5rem
}

.prev-image img {
    max-width: 200px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color)
}

.card-img-wrap {
    position: relative
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .9);
    color: #ccc;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    opacity: 0
}

.blog-card:hover .wishlist-btn,
.weekly2-single:hover .wishlist-btn {
    opacity: 1
}

.wishlist-btn.wishlisted {
    opacity: 1
}

.wishlist-btn:hover {
    background: var(--white);
    color: var(--accent);
    transform: scale(1.1)
}

.wishlist-btn.wishlisted {
    color: var(--accent);
    background: var(--white)
}

.wishlist-btn.wishlisted:hover {
    animation: heartBeat .6s ease
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.2)
    }

    50% {
        transform: scale(1)
    }

    75% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}

.wishlist-page .blog-card {
    margin-bottom: 20px
}

.wishlist-page .wishlist-btn {
    opacity: 1
}

.wishlist-empty {
    text-align: center;
    padding: 40px 20px
}

.wishlist-empty i {
    font-size: 3rem;
    color: var(--muted-color);
    margin-bottom: 15px;
    display: block
}

.wishlist-empty p {
    color: var(--muted-color);
    margin-bottom: 15px
}

.feature-img {
    position: relative
}

.feature-img .wishlist-btn {
    opacity: 1;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    font-size: 18px
}

.recent-post-img {
    position: relative;
    flex-shrink: 0;
    width: 75px;
    min-width: 75px
}

.recent-post-img>a {
    display: block;
    line-height: 0
}

.recent-post-img>a>img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block
}

.wishlist-btn-sm {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: 4px;
    right: 4px;
    opacity: 0
}

.recent-post:hover .wishlist-btn-sm {
    opacity: 1
}

.wishlist-btn-sm.wishlisted {
    opacity: 1
}

.blog_description h2 {
    font-size: 18px;
    font-weight: 500
}