

:root {
    --primary-color: var(--color-rank-1);
    --primary-dark: var(--color-rank-6);
    --primary-light: var(--color-rank-8);
    --secondary-color: var(--color-rank-9);
    --text-dark: var(--color-rank-3);
    --text-light: var(--color-rank-4);
    --border-color: var(--color-rank-5);
    --bg-light: var(--color-rank-7);
    --white: var(--color-rank-2);
    --shadow-sm: 0 2px 8px 0 var(--color-rank-14), 0 2px 2px 0 var(--color-rank-18);
    --shadow-md: 0 4px 16px 0 var(--color-rank-19), 0 4px 4px 0 var(--color-rank-20);
    --shadow-lg: 0 8px 24px 0 var(--color-rank-21), 0 8px 8px 0 var(--color-rank-22);
    --shadow-xl: 0 16px 40px 0 var(--color-rank-23), 0 16px 16px 0 var(--color-rank-24);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    all: unset;
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* ===== HERO SLIDER — Cinematic Dark Split ===== */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 100px);
    background: linear-gradient(160deg, var(--secondary-color) 0%, var(--text-dark) 100%);
    overflow: hidden;
}

.hero-slide-modern {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content-left {
    padding: 120px 40px 120px 0;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    background: transparent;
}

.hero-shape-1 {
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    background: transparent;
    top: -80px;
    left: -100px;
    animation: heroSpin 50s linear infinite;
}

.hero-shape-2 {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    background: transparent;
    bottom: 60px;
    left: 180px;
    animation: heroSpin 35s linear infinite reverse;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    background: transparent;
    top: 20%;
    right: 8%;
    border-radius: 0;
    opacity: 0.12;
    animation: heroDiamond 7s ease-in-out infinite;
}

.hero-shape-4 {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    top: 65%;
    left: 12%;
    border-radius: 0;
    opacity: 0.15;
    animation: heroDiamond 9s ease-in-out infinite 2s;
}

.hero-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: heroGlow 4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary-color), 0 0 20px var(--primary-color);
}

.hero-dot-1 {
    top: 18%;
    left: 8%;
    animation-delay: 0s;
}

.hero-dot-2 {
    top: 55%;
    right: 28%;
    animation-delay: 1.5s;
}

.hero-dot-3 {
    bottom: 22%;
    left: 32%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes heroSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heroDiamond {
    0%, 100% { opacity: 0.08; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.22; transform: rotate(45deg) scale(1.15); }
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(2.5); }
}

.hero-text-wrapper {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-image-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover::before {
    top: -16px;
    right: -16px;
    opacity: 0.35;
}

.hero-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-slider .swiper-pagination {
    bottom: 35px;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 6px !important;
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
    transform: scale(1.3);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.tedavi-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
}

.tedavi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tedavi-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tedavi-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tedavi-card:hover .tedavi-card-img img {
    transform: scale(1.1);
}

.tedavi-card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.tedavi-card-body {
    padding: 1.5rem;
}

.tedavi-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.tedavi-card-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tedavi-card-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 0.5rem;
}

.tedavi-card-body a:hover {
    gap: 1rem;
}

.doktor-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.doktor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doktor-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.doktor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doktor-card:hover .doktor-card-img img {
    transform: scale(1.1);
}

.doktor-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--color-rank-31), transparent);
    color: var(--white);
}

.doktor-card-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.doktor-card:hover .doktor-card-social {
    opacity: 1;
    transform: translateX(0);
}

.doktor-card-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.doktor-card-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.doktor-card-body {
    padding: 1.5rem;
}

.doktor-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.doktor-card-body p {
    color: var(--text-light);
    margin-bottom: 0;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-card-meta i {
    color: var(--primary-color);
}

.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
    color: var(--primary-color);
}

.blog-card-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="var(--color-rank-16)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.stats-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
}

.stats-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--color-rank-16);
    top: -50px;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.stats-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--color-rank-32);
    bottom: -40px;
    right: 15%;
    animation: float 22s ease-in-out infinite 3s;
}

.stats-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-rank-33);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.stats-dot-1 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.stats-dot-2 {
    bottom: 40%;
    left: 25%;
    animation-delay: 1.5s;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-rank-34);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-shape-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-rank-17), var(--color-rank-35));
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation: float 25s ease-in-out infinite;
}

.section-shape-blob-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-rank-36), var(--color-rank-37));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 15%;
    left: -80px;
    animation: morph 18s ease-in-out infinite;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.gallery-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.gallery-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gallery-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-rank-38), var(--color-rank-39));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    animation: morph 20s ease-in-out infinite;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rank-40), var(--color-rank-41));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
}

.certificates-slider {
    padding: 2rem 0;
}

.certificate-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certificate-item img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.certificate-item:hover img {
    filter: grayscale(0%);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: var(--color-rank-42);
}

.cta-shape-1 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    top: -100px;
    right: -80px;
    animation: float 18s ease-in-out infinite;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -80px;
    left: -60px;
    animation: morph 16s ease-in-out infinite;
}


.cta-content {
    position: relative;
    z-index: 3;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.page-banner {
    padding: 6rem 0 4rem;
    /* margin-bottom: 3rem; */
}

.page-banner h1 {
    font-size: 3rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    top: -3px;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.editor-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.editor-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.editor-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.editor-content h3 {
    font-size: 1.5rem;
}

.editor-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0rem;
    list-style: none;
}

.editor-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    padding-left: 2.2em;
}

.editor-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    background: var(--primary-color);
    color: var(--color-rank-2);
    border-radius: 50%;
    width: 1.6em;
    height: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    box-sizing: border-box;
}

.editor-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.editor-content ol li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}


.editor-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.editor-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.editor-content a:hover {
    color: var(--primary-dark);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sidebar-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-search button:hover {
    background-color: var(--primary-dark);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 1rem;
}

.sidebar-list li a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.sidebar-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.sidebar-list li a i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-post:last-child {
    margin-bottom: 0;
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.sidebar-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-content h4 a:hover {
    color: var(--primary-color);
}

.sidebar-post-meta {
    color: var(--text-light);
    font-size: 0.875rem;
}

.sidebar-post-meta i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-13);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination {
    margin-top: 3rem;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.doktor-detail-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.doktor-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doktor-info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.doktor-info-card h2 {
    margin-bottom: 0.5rem;
}

.doktor-info-card .text-muted {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.doktor-info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.doktor-info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.doktor-info-list li:last-child {
    border-bottom: none;
}

.doktor-info-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 30px;
}

.doktor-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.doktor-social a {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.doktor-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.related-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    margin-top: 4rem;
}

/* .footer {
    margin-top: 5rem;
} */

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-rank-43);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 0.25rem;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 991.98px) {
    .hero-slider {
        min-height: auto;
    }

    .hero-slide-modern {
        min-height: auto;
        padding: 0 0 70px 0;
    }

    .hero-content-left {
        padding: 40px 30px;
    }

    .hero-shape-1 {
        width: 200px;
        height: 200px;
    }

    .hero-shape-2 {
        width: 130px;
        height: 130px;
    }

    .hero-shape-3 {
        width: 50px;
        height: 50px;
    }

    .hero-shape-4 {
        width: 35px;
        height: 35px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image-right {
        min-height: auto;
        margin-top: 0;
        padding: 0 30px 20px;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .hero-image-wrapper::before {
        top: -8px;
        right: -8px;
        bottom: 8px;
        left: 8px;
    }

    .hero-main-image {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .sidebar {
        position: static;
        margin-top: 3rem;
    }

    .hero-slide-modern .row {
        flex-direction: column-reverse;
    }

    .hamburger-radevu-hiza {
        margin-top: 20px;
        margin-left: 15px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .section-shape-circle-1 {
        width: 250px;
        height: 250px;
    }

    .section-shape-blob-1 {
        width: 180px;
        height: 180px;
    }

    .stats-shape-1,
    .stats-shape-2 {
        width: 120px;
        height: 120px;
    }

    .cta-shape-1 {
        width: 250px;
        height: 250px;
    }

    .cta-shape-2 {
        width: 180px;
        height: 180px;
    }

    .gallery-shape-1 {
        width: 200px;
        height: 200px;
    }

    .navbar.shadow-lg {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        animation: slideDown 0.4s ease-in-out;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
}

@media (max-width: 575.98px) {
    .hero-slide-modern {
        padding: 20px 0 50px;
    }

    .hero-content-left {
        padding: 30px 20px;
    }

    .hero-shape-1 {
        width: 150px;
        height: 150px;
        top: 20px;
        left: -60px;
    }

    .hero-shape-2 {
        width: 80px;
        height: 80px;
    }

    .hero-shape-3,
    .hero-shape-4 {
        display: none;
    }

    .hero-dot {
        width: 2px;
        height: 2px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image-right {
        min-height: auto;
        margin-top: 0;
        padding: 10px 20px 0;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .hero-image-wrapper::before {
        top: -6px;
        right: -6px;
        bottom: 6px;
        left: 6px;
        border-width: 1px;
    }

    .hero-main-image {
        aspect-ratio: 4/3;
        border-radius: 14px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
        letter-spacing: 1.5px;
    }

    .hero-slider .swiper-pagination {
        bottom: 15px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-shape-circle-1 {
        width: 180px;
        height: 180px;
        right: -60px;
    }

    .section-shape-blob-1 {
        width: 120px;
        height: 120px;
        left: -50px;
    }

    .stats-shape-1,
    .stats-shape-2 {
        width: 100px;
        height: 100px;
    }

    .stats-dot {
        width: 6px;
        height: 6px;
    }

    .cta-shape-1 {
        width: 200px;
        height: 200px;
    }

    .cta-shape-2 {
        width: 150px;
        height: 150px;
    }

    .gallery-shape-1 {
        display: none;
    }
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-44);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-11);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-45);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--white);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-12);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-2);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.navbar-brand img, footer .footer-logo img{
  object-position: left;
  object-fit: contain;
  width: 150px;
  height: auto;
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
}


.tedavi-card-icon img{
    width: 32px;
    height: auto;
    object-fit: contain;
}


/* Vizyon ve Misyon Bölümü - Modern Minimalist Tasarım */
.vizyon-misyon {
    background: linear-gradient(135deg, var(--color-rank-7) 0%, var(--color-rank-2) 100%);
    padding: 5rem 0;
}

.vizyon-misyon .contact-info-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 2px 20px var(--color-rank-17);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vizyon-misyon .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vizyon-misyon .contact-info-card:hover::before {
    transform: scaleY(1);
}

.vizyon-misyon .contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px var(--color-rank-14);
}

.vizyon-misyon .contact-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.vizyon-misyon .contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}



/* Responsive */
@media (max-width: 991.98px) {
    .vizyon-misyon {
        padding: 3rem 0;
    }
    
    .vizyon-misyon .contact-info-card {
        padding: 2.5rem 2rem;
        margin-bottom: 1.5rem;
    }
    
    .vizyon-misyon .contact-info-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .vizyon-misyon .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .vizyon-misyon .contact-info-card h3 {
        font-size: 1.35rem;
    }
    
    .vizyon-misyon .contact-info-card .editor-content p {
        font-size: 1rem;
    }
}

.sidebar-list li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.share-btns a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.share-btns a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border-color);
}


/* Doktor Detay - Görsel ve İçerik Aynı Yükseklikte (Sadece PC) */
@media (min-width: 768px) {
    .doktor-detail-top {
        align-items: stretch;
    }
    
    .doktor-detail-top .col-md-4,
    .doktor-detail-top .col-md-8 {
        display: flex;
    }
    
    .doktor-detail-img {
        height: 100%;
        aspect-ratio: unset;
        display: flex;
    }
    
    .doktor-detail-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .doktor-info-card {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}


/* Sidebar Post Hover Efekti */
.sidebar-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sidebar-post:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-post:hover .sidebar-post-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px var(--color-rank-46);
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-post:hover .sidebar-post-img img {
    transform: scale(1.1);
}

.sidebar-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post:hover .sidebar-post-content h4 a {
    color: var(--primary-color);
}

.sidebar-post-content p {
    transition: color 0.3s ease;
}

.sidebar-post:hover .sidebar-post-content p {
    color: var(--text-dark);
}

.make-sticky {
    position: sticky;
    top: 100px;
}