@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;600;700&display=swap');
body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #fff5f5;
}

img:hover {
    filter: brightness(1.2) saturate(1.3);
}

.header {
    width: 100%;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ececec;
}

.topbardis {
    background-color: #cb1515;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    max-width: 1200px;
    margin: auto;
}

.currency-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    width: 48%;
    height: 40px;
}

.currency-item {
    font-size: 15px;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.currency-item .normal {
    color: #fff;
    display: block;
    font-size: 13px;
}

.currency-item .dususte {
    color: #d0f11c;
    display: block;
    font-size: 13px;
}

.currency-item .yukseliste {
    color: #8bf5a7;
    display: block;
    font-size: 13px;
}

.currency-item i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.currency-item i.normal {
    color: #fff;
    animation: bounce 2s infinite alternate;
}

.currency-item i.yukseliste {
    color: #8bf5a7;
    animation: bounce 2s infinite alternate;
}

.currency-item i.dususte {
    color: #d0f11c;
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
	}
    50% {
        transform: translateY(-5px);
	}
}

.topbar-buttons {
    display: flex;
    width: 52%;
    justify-content: flex-end;
    align-items: center;
}

.topbar-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #cb1515;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    line-height: 16px;
    width: 100px;
}

.topbar-btn:hover {
    background: #891a1a;
    color: #fff;
}

.topbar-btn img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 5px;
}

.topbar-btn i {
    margin-right: 5px;
    padding: 4px 0;
}

.altbardis {
    background-color: #f8f9fa;
}

.altbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

.logo img {
    height: 50px;
}

.main-menu {
    padding: 10px;
    border-radius: 5px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-menu li:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    margin-top: 2px;
    background-color: #666;
}

.main-menu li:last-child:after {
    all: unset;
}

.main-menu a {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
}

.main-menu a:hover {
    color: #e85b51;
}

.main-menu ul.sub-menu li a {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
}

.main-menu ul.sub-menu li a:hover {
    color: #fff;
    background-color: #e85b51;
}

.main-menu li ul {
    display: none;
    position: absolute;
    margin: 10px 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    z-index: 3;
}

.main-menu li:hover > ul {
    display: block;
}

.main-menu li ul li:after {
    all: unset;
}

.main-menu li ul li a {
    padding: 10px 15px;
    white-space: nowrap;
    display: block;
}

.main-menu li ul li a:hover {
    background-color: #e85b51;
}

.mobile-actions {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu {
    display: none;
}

.search-login {
    display: flex;
    width: 15%;
    align-items: center;
    padding: 0 10px 0 0;
    z-index: 2;
    justify-content: flex-end;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    cursor: pointer;
    margin-right: 10px;
    color: #cb1515;
}

.search-input {
    padding: 5px;
    border: 1px solid #ececec;
    border-radius: 4px;
    display: none;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.kayanhaberlerdis {
    background-color: #f0f0f0;
}

.kayanhaberler {
    max-width: 1200px;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #f0f0f0;
}

.kayanhaberler .haberikon {
    width: 140px;
    padding: 10px;
}
.kayanhaberler .haberikon .habertitle {
	color: #555;
	font-size: 15px;
	font-weight: bold;
    display: inline-block;
    text-shadow: 1px 1px 5px #333;
    animation: HaberTitleEfekt 3s ease-in-out infinite;
}

@keyframes HaberTitleEfekt {
    0% {
        color: #555;
        opacity: 1;
	}
    17% {
        opacity: 0;
	}
    34% {
        color: #CB1515;
        opacity: 1;
	}
    51% {
        opacity: 0;
	}
    67% {
        color: #FF6600;
        opacity: 1;
	}
    84% {
        opacity: 0;
	}
    100% {
        color: #555;
        opacity: 1;
	}
}

.kayanhaberler .habermarqueebolum {
    width: 100%;
    height: 40px;
    padding: 0;
    overflow: hidden;
    background: #cb1515;
}

.kayanhaberler .habermarqueebolumonce {
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: #f0f0f0 #cb1515;
}

.kayanhaberler .habermarqueebolumsonra {
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: #f0f0f0 #cb1515;
}

.kayanhaberler .habermarquee {
    display: inline-block;
    white-space: nowrap;
    position: relative; 
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.kayanhaberler a {
	color: #fff;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	padding: 0 25px;
	font-weight: 300;
	font-size: 15px;
	cursor: pointer;
}

.kayanhaberler a.topbar-btn {
	color: #cb1515;
	padding: 5px 10px;
}

.kayanhaberler a.topbar-btn:hover {
	color: #fff;
}

.kayanhaberler a:not(:first-child):before {
    content: '\f111';
    font-family: 'fontello';
    font-weight: normal;
    color: #fff;
    font-size: 5px;
    position: absolute;
    top: 17px;
    margin-left: -30px;
}

.kayanhaberler a:hover {
	color: yellow;
}

.breaking-news {
    background-color: #f0f0f0;
    padding: 10px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-news h2 {
    margin: 0;
    font-size: 18px;
    background-color: #f0f0f0;
    padding-right: 15px;
    z-index: 2;
}

.news-marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    animation: marquee 15s linear infinite;
    flex-grow: 1;
    margin-left: 15px;
    z-index: 1;
}

.news-item {
    padding: 0 20px;
    color: #007bff;
    text-decoration: none;
}

.news-item:hover {
    text-decoration: underline;
}

.news-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
	}
    to {
        transform: translateX(-100%);
	}
}

a.basliktumu {
    color: #fff;
    text-decoration: none;
}

a.basliktumu:hover {
    color: #4c1313;
    text-decoration: none;
    font-weight: 900;
}


.slider-yukle {
	opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.slider-yukle.slick-initialized {
	visibility: visible;
    opacity: 1;
}

.news-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.news-container {
    display: flex;
    justify-content: space-between;
}

.sicak-slider {
    position: relative;
    width: calc(30% - 20px);
    margin: 0 0 0 20px;
    background: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.sicak-slider .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.sicak-slider .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px 60px 5px 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.sicak-slider .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.sicak-slider .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.sicak-slider .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.sicak-slider .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.sicak-slider .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.sicak-slider .hot-slider {
    height: 410px;
    border-radius: 5px;
    margin: 0;
    padding: 10px 10px 0 10px;
}

.sicak-slider .hot-slider .hot-slide {
    display: flex;
    align-items: center;
    padding: 14px 20px 14px 10px;
    border-bottom: 1px solid #ececec;
    transition: background 0.3s;
}

.sicak-slider .hot-slider .hot-slide.no-border {
    border-bottom: none;
}

.sicak-slider .hot-slider .hot-slide:hover {
    background: #e9ecef;
}

.sicak-slider .hot-slider .hot-slide.slick-current {
    background: #e9ecef;
    border-radius: 10px;
}

.sicak-slider .hot-slider .hot-slide-image {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}

.sicak-slider .hot-slider .hot-slide-content {
    flex-grow: 1;
    margin: 0 10px;
    width: 100%;
}

.sicak-slider .hot-slider .hot-slide-content a {
    display: inline-block;
    width: calc(100% - 50px);
    color: #000;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sicak-slider .hot-slider .hot-slide-content .hot-slide-title {
    margin: 0;
    font-size: 1em;
    font-weight: 550;
}

.sicak-slider .hot-slider .hot-slide-content .hot-slide-description {
    display: inline-block;
    width: calc(100% - 50px);
    margin: 0;
    font-size: 0.9em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sicak-slider .slick-prev {
    transform: rotate(90deg);
    left: unset;
    right: 30px;
    top: -30px;
    z-index: 2;
}

.sicak-slider .slick-next {
    transform: rotate(90deg);
    right: 5px;
    top: -30px;
    z-index: 2;
}

.sicak-slider .slick-next:before, .sicak-slider .slick-prev:before {
    color: #fff;
}

.gundem-slider {
    width: 70%;
    position: relative;
}

.gundem-slider .slider {
    display: flex;
    overflow: hidden;
}

.gundem-slider .slide {
    position: relative;
    width: 300px;
}

.gundem-slider .slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
}

.gundem-slider .overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, transparent);
    color: white;
    text-align: left;
    padding: 10px 30px;
    width: auto;
    border-top-right-radius: 20px;
}

.gundem-slider .overlay span {
    font-size: 20px;
    margin: 5px 0;
}

.gundem-slider .slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.gundem-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: auto;
    margin: 0 5px;
    padding: 0 0 5px 0;
    cursor: pointer;
}

.gundem-slider .slick-dots li.slick-active button {
    font-family: 'Montserrat';
    background-color: #322f2f;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 30px;
    position: relative;
    border-radius: 5px;
}

.gundem-slider .slick-dots li button {
    font-family: 'Montserrat';
    cursor: pointer;
    color: #8a8a8a;
    font-size: 16px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 30px;
    position: relative;
}

.gundem-slider .slick-dots li button:before {
    all: unset;
}

.gundem-slider .slick-dotted.slick-slider {
    margin-bottom: 0;
    border-radius: 5px;
}

.gundem-slider .slick-prev {
    left: 10px;
    top: unset;
    bottom: 10px;
    z-index: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.gundem-slider .slick-next {
    right: 10px;
    top: unset;
    bottom: 10px;
    z-index: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.gundem-slider .slick-next:before, .gundem-slider .slick-prev:before {
    color: #8a8a8a;
}

.gundem-slider .slick-prev:hover:before, .gundem-slider .slick-next:hover:before {
    color: #fff;
}

.gazeteler-slider {
    margin-top: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.gazeteler-slider .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.gazeteler-slider .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px 60px 5px 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.gazeteler-slider .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.gazeteler-slider .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.gazeteler-slider .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.gazeteler-slider .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.gazeteler-slider .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.gazeteler-slider .gazete-slider {
    display: block;
    padding: 10px;
    height: 275px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.gazeteler-slider .gazete-slider .slick-prev {
    left: unset;
    right: 30px;
    top: -30px;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.gazeteler-slider .gazete-slider .slick-next {
    right: 5px;
    top: -30px;
    color: #fff;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.gazeteler-slider .gazete-slider .slick-prev:before, .gazeteler-slider .gazete-slider .slick-next:before {
    color: #fff;
}

.gazeteler-slider .gazete-slider .slick-prev:hover:before, .gazeteler-slider .gazete-slider .slick-next:hover:before {
    color: #fff;
}

.gazeteler-slider .gazete-slider .gazete-item {
    width: 100%;
    height: 250px;
    padding: 0 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gazeteler-slider .gazete-slider .gazete-item img {
    width: 100%;
    height: auto;
    max-height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gazetepg-fullscreen {
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
}

.gazetepg-fullscreen img {
    width: 100%;
    height: 100%;
}

.gazetepg-liste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.gazetepg-item {
    display: inline-block;
    margin: 10px;
    text-align: center;
}
.gazetepg-item img {
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gazetepg-item img:hover {
    transform: scale(1.05);
}


.fotogaleri-slider {
    margin-top: 20px;
    max-width: 1200px;
    margin: 20px auto 40px auto;
    background-color: #fff;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.fotogaleri-slider .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.fotogaleri-slider .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px 60px 5px 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.fotogaleri-slider .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.fotogaleri-slider .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.fotogaleri-slider .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.fotogaleri-slider .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.fotogaleri-slider .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.fotogaleri-slider .foto-slider {
    display: block;
    padding: 10px;
    height: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.fotogaleri-slider .foto-slider .slick-prev {
    left: unset;
    right: 30px;
    top: -30px;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fotogaleri-slider .foto-slider .slick-next {
    right: 5px;
    top: -30px;
    color: #fff;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fotogaleri-slider .foto-slider .slick-slide {
    padding: 5px;
}

.fotogaleri-slider .foto-slider .slick-prev:before, .fotogaleri-slider .foto-slider .slick-next:before {
    color: #fff;
}

.fotogaleri-slider .foto-slider .slick-prev:hover:before, .fotogaleri-slider .foto-slider .slick-next:hover:before {
    color: #fff;
}

.fotogaleri-slider .foto-slider .foto-item {
    position: relative;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.fotogaleri-slider .foto-slider .foto-item-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.fotogaleri-slider .foto-slider .foto-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.fotogaleri-slider .foto-slider .foto-caption {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-top: 5px;
}

.fotogaleri-slider .foto-slider .foto-overlay {
    position: absolute;
    bottom: 55px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.fotogaleri-slider .foto-slider .foto-item-wrapper:hover .foto-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    color: #cb1515;
    transform: scale(1.1);
}

.videogaleri-slider {
    margin-top: 20px;
    max-width: 1200px;
    margin: 20px auto 40px auto;
    background-color: #fff;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.videogaleri-slider .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.videogaleri-slider .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px 60px 5px 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.videogaleri-slider .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.videogaleri-slider .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.videogaleri-slider .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.videogaleri-slider .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.videogaleri-slider .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.videogaleri-slider .video-slider {
    display: block;
    padding: 10px;
    height: 250px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.videogaleri-slider .video-slider .slick-slide {
    position: relative;
    padding: 5px;
}

.videogaleri-slider .video-slider .slick-prev {
    left: unset;
    right: 30px;
    top: -30px;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.videogaleri-slider .video-slider .slick-next {
    right: 5px;
    top: -30px;
    color: #fff;
    z-index: 2;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.videogaleri-slider .video-slider .slick-prev:before, .videogaleri-slider .video-slider .slick-next:before {
    color: #fff;
}

.videogaleri-slider .video-slider .slick-prev:hover:before, .videogaleri-slider .video-slider .slick-next:hover:before {
    color: #fff;
}

.videogaleri-slider .video-slider .video-item {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.videogaleri-slider .video-slider .video-playbuton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.videogaleri-slider .video-slider .video-playbuton:hover {
    background-color: rgba(255, 255, 255, 1);
}

.videogaleri-slider .video-slider .video-playbuton:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 30px;
    border-left: 15px solid #cb1515;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.videogaleri-slider .video-slider .video-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-right: 10px;
    color: white;
    background-color: rgb(0 0 0 / 80%);
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 86%;
}

.ikigenisikidarhaber-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.ikigenisikidarhaber-container {
    display: flex;
    justify-content: space-between;
}

.ikigenisikidarhaber-bolum {
    width: 33%;
    background-color: #fff;
    border: 1px solid #ececec;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ikigenisikidarhaber-bolum.genis {
    width: 39%;
    margin-right: 30px;
}

.ikigenisikidarhaber-bolum.dar {
    all: unset;
    width: 22%;
}

.ikigenisikidarhaber-bolum .haberblok {
    padding: 10px;
}

.ikigenisikidarhaber-bolum .buyukhaber {
    position: relative;
    display: block;
}

.ikigenisikidarhaber-bolum .buyukhaber-resim {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.ikigenisikidarhaber-bolum .buyukhaber-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-right: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.ikigenisikidarhaber-bolum .haberler {
    margin-top: 10px;
}

.ikigenisikidarhaber-bolum .haber {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    padding: 5px 0;
}

.ikigenisikidarhaber-bolum .haber:last-child {
    margin: 5px 0 0 0;
    padding: 5px 0 0 0;
}

.ikigenisikidarhaber-bolum .haber:last-child .haber-wrapper:after {
    content: none;
}

.ikigenisikidarhaber-bolum .haber .haber-wrapper {
    position: relative;
    width: 48%;
    display: flex;
    align-items: center;
}

.ikigenisikidarhaber-bolum .haber .haber-wrapper:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 95%;
    height: 1px;
    background-color: #ececec;
}

.ikigenisikidarhaber-bolum .haber .haber-wrapper:first-child {
    border-right: 1px solid #ececec;
    padding-right: 5px
}

.ikigenisikidarhaber-bolum .kucukhaber-resim {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.ikigenisikidarhaber-bolum .haber-baslik {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.ikigenisikidarhaber-bolum .haber-baslik:hover {
    text-decoration: none;
}

.ikigenisikidarhaber-bolum-parca {
    width: 100%;
    border: 1px solid #ececec;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ikigenisikidarhaber-bolum-parca.alt {
    margin-top: 20px;
}

.ikigenisikidarhaber-bolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.ikigenisikidarhaber-bolum .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.ikigenisikidarhaber-bolum .bolumbaslik, .ikigenisikidarhaber-bolum-parca .bolumbaslik, .ikigenisikidarhaber-bolum-parca.alt .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.ikigenisikidarhaber-bolum .bolumbaslikonce::before, .ikigenisikidarhaber-bolum-parca .bolumbaslikonce::before, .ikigenisikidarhaber-bolum-parca.alt .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.ikigenisikidarhaber-bolum .bolumbaslikonce::after, .ikigenisikidarhaber-bolum-parca .bolumbaslikonce::after, .ikigenisikidarhaber-bolum-parca.alt .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.ikigenisikidarhaber-bolum .bolumbasliksonra::before, .ikigenisikidarhaber-bolum-parca .bolumbasliksonra::before, .ikigenisikidarhaber-bolum-parca.alt .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.ikigenisikidarhaber-bolum .bolumbasliksonra::after, .ikigenisikidarhaber-bolum-parca .bolumbasliksonra::after, .ikigenisikidarhaber-bolum-parca.alt .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ikigenisikidarhaber-bolum-parca .hava-durumu {
    font-size: 15px;
    color: #fff;
    padding: 10px;
    text-align: center;
    background: linear-gradient(180deg,#cb1515 0%,#891a1a 100%);
}

.ikigenisikidarhaber-bolum-parca .hava-durumu .sehir {
    font-size: 25px;
    font-weight: 900;
}

.ikigenisikidarhaber-bolum-parca .hava-durumu .derece {
    font-size: 30px;
    font-weight: 900;
}

.ikigenisikidarhaber-bolum-parca .hava-durumu p {
    margin: 0;
}

.ikigenisikidarhaber-bolum-parca .hava-durumu .durum {
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.ikigenisikidarhaber-bolum-parca .hava-durumu img {
    margin: 5px 0;
    width: 70px;
    height: auto;
}

.ikigenisikidarhaber-bolum-parca .namaz-vakti {
    padding: 10px;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.ikigenisikidarhaber-bolum-parca .tarih-bilgileri {
    font-size: 15px;
    color: #555;
    text-align: center;
    padding: 5px 0;
}

.ikigenisikidarhaber-bolum-parca .tarih-bilgileri p:first-child {
    font-size: 25px;
}

.ikigenisikidarhaber-bolum-parca .tarih-bilgileri p {
    margin: 5px 0;
}

.ikigenisikidarhaber-bolum-parca .namaz-bilgi {
    font-size: 16px;
    color: #555;
    padding: 10px 15px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.ikigenisikidarhaber-bolum-parca .namaz-bilgi p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

.ikigenisikidarhaber-bolum-parca .vakit {
    width: 100%;
}

.ikigenisikidarhaber-bolum-parca .vakit .aktif-vakit {
    color: #cb1515;
    font-weight: 900;
}

.ikigenisikidarhaber-bolum-parca .vakit .saat {
    text-align: right;
    flex: 1;
}

.ikigenisikidarhaber-bolum .dahafazlabuton, .ikigenisikidarhaber-bolum-parca .dahafazlabuton {
    background-color: #cb1515;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: calc(100% - 30px);
    text-align: center;
    text-decoration: none;
}

.ikigenisikidarhaber-bolum .dahafazlabuton:hover, .ikigenisikidarhaber-bolum-parca .dahafazlabuton:hover {
    background-color: #891a1a;
}

.ikilihaber-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.ikilihaber-container {
    display: flex;
    justify-content: space-between;
}

.ikilihaber-bolum {
    width: 50%;
    background-color: #fff;
    border: 1px solid #ececec;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ikilihaber-bolum:first-child {
    margin-right: 15px;
}

.ikilihaber-bolum:last-child {
    margin-left: 15px;
}

.ikilihaber-bolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.ikilihaber-bolum .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.ikilihaber-bolum .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.ikilihaber-bolum .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.ikilihaber-bolum .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.ikilihaber-bolum .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.ikilihaber-bolum .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ikilihaber-bolum .haberblok {
    padding: 10px;
}

.ikilihaber-bolum .buyukhaber {
    position: relative;
    display: block;
}

.ikilihaber-bolum .buyukhaber-resim {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.ikilihaber-bolum .buyukhaber-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
}

.ikilihaber-bolum .haberler {
    display: flex;
    flex-wrap: wrap;
}

.ikilihaber-bolum .kucukhaber {
    position: relative;
    width: calc(50% - 5px);
    margin-top: 5px;
}

.ikilihaber-bolum .kucukhaber:nth-child(odd) { 
    padding-right: 5px;
}
.ikilihaber-bolum .kucukhaber:nth-child(even) {
	padding-left: 5px;
}

.ikilihaber-bolum .kucukhaber-resim {
    width: 100%;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
}

.ikilihaber-bolum .haber-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-right: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
}

.ikilihaber-bolum .dahafazlabuton {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.ikilihaber-bolum .dahafazlabuton:hover {
    background-color: #0056b3;
}

.ucluhaber-section {
    max-width: 1200px;
    margin: 20px auto;
}

.ucluhaber-container {
    display: flex;
    justify-content: space-between;
}

.ucluhaber-bolum {
    width: 33.33%;
    background-color: #fff;
    border: 1px solid #ececec;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ucluhaber-bolum:first-child {
    margin-right: 30px;
}

.ucluhaber-bolum:last-child {
    margin-left: 30px;
}

.ucluhaber-bolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.ucluhaber-bolum .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.ucluhaber-bolum .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.ucluhaber-bolum .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.ucluhaber-bolum .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.ucluhaber-bolum .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.ucluhaber-bolum .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ucluhaber-bolum .haberblok {
    padding: 10px;
}

.ucluhaber-bolum .buyukhaber {
    position: relative;
    display: block;
}

.ucluhaber-bolum .buyukhaber-resim {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.ucluhaber-bolum .buyukhaber-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.ucluhaber-bolum .haber-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.ucluhaber-bolum .haber {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.ucluhaber-bolum .kucukhaber-resim {
    width: 100%;
    height: 70px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.ucluhaber-bolum .haber-baslik {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.ucluhaber-bolum .haber-baslik:hover {
    text-decoration: underline;
}

.ucluhaber-bolum .dahafazlabuton {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.ucluhaber-bolum .dahafazlabuton:hover {
    background-color: #0056b3;
}

.ikigenisbirdarhaber-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.ikigenisbirdarhaber-container {
    display: flex;
    justify-content: space-between;
}

.ikigenisbirdarhaber-bolum {
    width: 35%;
    background-color: #fff;
    border: 1px solid #ececec;
    position: relative;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ikigenisbirdarhaber-bolum.dar {
    width: 30%;
    background-color: #fff;
}

.ikigenisbirdarhaber-bolum:first-child {
    margin-right: 30px;
}

.ikigenisbirdarhaber-bolum:last-child {
    margin-left: 30px;
}

.ikigenisbirdarhaber-bolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.ikigenisbirdarhaber-bolum .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.ikigenisbirdarhaber-bolum .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.ikigenisbirdarhaber-bolum .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.ikigenisbirdarhaber-bolum .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.ikigenisbirdarhaber-bolum .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.ikigenisbirdarhaber-bolum .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ikigenisbirdarhaber-bolum .haberblok {
    padding: 10px;
}

.ikigenisbirdarhaber-bolum .buyukhaber {
    position: relative;
    display: block;
}

.ikigenisbirdarhaber-bolum .buyukhaber-resim {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.ikigenisbirdarhaber-bolum .buyukhaber-baslik {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.ikigenisbirdarhaber-bolum .haber {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 0;
    border-bottom: 1px solid #ececec;
}

.ikigenisbirdarhaber-bolum .haber:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ikigenisbirdarhaber-bolum .kucukhaber-resim {
    width: 70px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
}

.ikigenisbirdarhaber-bolum .haber-baslik {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.ikigenisbirdarhaber-bolum .haber-baslik:hover {
    text-decoration: underline;
}

.ikigenisbirdarhaber-bolum.dar .puandurumutam {
    padding: 0 0 10px 10px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu {
    height: 575px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig {
    height: 495px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu::-webkit-scrollbar {
	width: 3px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu::-webkit-scrollbar-track {
	background: #363548; 
}

.ikigenisbirdarhaber-bolum.dar .puandurumu::-webkit-scrollbar-thumb {
	background: #888; 
}

.ikigenisbirdarhaber-bolum.dar .puandurumu::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

.ikigenisbirdarhaber-bolum.dar .puandurumu table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 10px;
    font-size: 14px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu thead tr {
    background-color: #fff;
    border-bottom: 2px solid rgb(88 88 91 / .1);
}

.ikigenisbirdarhaber-bolum.dar .puandurumu thead tr th {
    color: #cb1515;
    padding: 3px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu thead tr th:nth-child(9) {
    padding-right: 10px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu tbody tr {
    border-bottom: 1px solid #fff;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu tbody tr td {
    position: relative;
    text-align: center;
    font-size: 13px;
    padding: 3px;
    line-height: 25px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu tbody tr td:nth-child(2) {
    display: block;
    width: 140px;
    font-size: 14px;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu tbody tr td:nth-child(9) {
    font-size: 14px;
    font-weight: 900;
    padding-right: 10px;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig tbody tr:nth-child(1) td:first-child::before {
    content: '';
    background-color: #4285F4;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig tbody tr:nth-child(2) td:first-child::before {
    content: '';
    background-color: #FA7B17;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig tbody tr:nth-child(3) td:first-child::before {
    content: '';
    background-color: #34A853;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig tbody tr:nth-child(4) td:first-child::before {
    content: '';
    background-color: #24C1E0;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}

.ikigenisbirdarhaber-bolum.dar .puandurumu.superlig tbody tr:nth-last-child(-n+4) td:first-child::before {
    content: '';
    background-color: #EA4335;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk {
    padding: 10px 0 0 0;
    color: #666;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi {
    display: flex;
    align-items: center;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi .renk {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi:nth-child(1) .renk {
    background-color: #4285F4;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi:nth-child(2) .renk {
    background-color: #FA7B17;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi:nth-child(3) .renk {
    background-color: #34A853;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi:nth-child(4) .renk {
    background-color: #24C1E0;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi:nth-child(5) .renk {
    background-color: #EA4335;
}

.ikigenisbirdarhaber-bolum.dar .siralamarenk .siralamabilgi .bilgi {
    font-size: 12px;
}

.ikigenisbirdarhaber-bolum .dahafazlabuton {
    background-color: #cb1515;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.ikigenisbirdarhaber-bolum.dar .dahafazlabuton {
    background-color: #cb1515;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: calc(100% - 40px);
    text-align: center;
    text-decoration: none;
}

.ikigenisbirdarhaber-bolum .dahafazlabuton:hover {
    background-color: #891a1a;
}

.category-news-section {
    max-width: 1200px;
    margin: 20px auto;
}

.category-news-container {
    display: flex;
    width: 100%;
}

.category-news-column {
    width: 50%;
    padding: 20px;
}

.category-news-column h2 {
    margin: 10px 0;
}

.category-news-item {
    margin-bottom: 15px;
}

.category-news-item h3 {
    margin: 5px 0;
}

.category-news-item p {
    margin: 5px 0;
}

.triple-category-news-section {
    max-width: 1200px;
    margin: 20px auto;
}

.triple-category-news-container {
    display: flex;
    width: 100%;
}

.triple-category-news-column {
    width: 33.33%;
    padding: 20px;
}

.triple-category-news-column h2 {
    margin: 10px 0;
}

.triple-category-news-item {
    margin-bottom: 15px;
}

.triple-category-news-item h3 {
    margin: 5px 0;
}

.triple-category-news-item p {
    margin: 5px 0;
}

.triple-additional-section {
    max-width: 1200px;
    margin: 20px auto;
}

.triple-additional-container {
    display: flex;
    width: 100%;
}

.triple-additional-column {
    width: 33.33%;
    padding: 20px;
}

.triple-additional-column h2 {
    margin: 10px 0;
}

.author-item, .sports-item, .standings-item {
    margin-bottom: 15px;
}

.author-item h3, .sports-item h3, .standings-item h3 {
    margin: 5px 0;
}

.author-item p, .sports-item p {
    margin: 5px 0;
}

.triple-additional-section {
    max-width: 1200px;
    margin: 20px auto;
}

.triple-additional-container {
    display: flex;
    width: 100%;
}

.triple-additional-column {
    width: 33.33%;
    padding: 20px;
}

.triple-additional-column h2 {
    margin: 10px 0;
}

.education-item, .third-page-item, .announcement-item {
    margin-bottom: 15px;
}

.education-item h3, .third-page-item h3, .announcement-item h3 {
    margin: 5px 0;
}

.education-item p, .third-page-item p, .announcement-item p {
    margin: 5px 0;
}

.announcement-slider {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.announcement-item {
    position: absolute;
    width: 100%;
    animation: slide 10s linear infinite;
}

@keyframes slide {
    0% { top: 100%; }
    100% { top: -100%; }
}

.three-section-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
}

.education-section,
.third-page-news-section,
.ilanlar-section {
    width: 32%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 5px;
}

.education-section h2,
.third-page-news-section h2,
.ilanlar-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.ilanlar-slider {
    margin-top: 10px;
}

.ilan-item {
    padding: 10px;
}

.ilan-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.ilan-item h3 {
    margin: 10px 0 5px;
}

.ilan-item p {
    font-size: 0.9em;
    color: #555;
}

.ikihaberbirslider-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.ikihaberbirslider-container {
    display: flex;
    justify-content: space-between;
}

.ikihaberbirslider-bolum {
    width: 33.33%;
    margin-right: 30px;
    position: relative;
    background-color: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 2px solid #cb1515;
}

.ikihaberbirslider-bolum:last-child {
    margin-right: 0;
}

.ikihaberbirslider-bolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.ikihaberbirslider-bolum .bolumbasliktumu {
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 5px;
    background: #ffffff3d;
    border-radius: 3px;
}

.ikihaberbirslider-bolum .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.ikihaberbirslider-bolum .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.ikihaberbirslider-bolum .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.ikihaberbirslider-bolum .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.ikihaberbirslider-bolum .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ikihaberbirslider-section .haberler, .ikihaberbirslider-section .numaralar, .ikihaberbirslider-section .yazarlar-slider {
    padding: 10px;
}

.ikihaberbirslider-section .haber-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 0;
    font-weight: 500;
    border-bottom: 1px solid #ececec;
}

.ikihaberbirslider-section .haber-item:first-child, .ikihaberbirslider-section .haber-item:last-child {
    margin: 0;
}

.ikihaberbirslider-section .haber-item:last-child {
    border-bottom: none;
}

.ikihaberbirslider-section .haber-item a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.ikihaberbirslider-section .haber-resim {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.ikihaberbirslider-section .numara-item {
    display: flex;
    align-items: center;
    margin: 10px 5px 0 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.ikihaberbirslider-section .numara-item:last-child {
    border-bottom: none;
}

.ikihaberbirslider-section .numara-item span {
    margin-right: 10px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #666;
    color: #fff;
    border-radius: 50%;
}

.ikihaberbirslider-section .numara-item a {
    margin-right: 10px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ikihaberbirslider-section .yazarlar-slider {
    display: flex;
    flex-direction: column;
    height: 420px;
}

.ikihaberbirslider-section .yazar-item {
    display: flex;
    align-items: center;
    margin: 2px 0;
    padding: 5px 0;
    border-bottom: 1px solid #ececec;
}

.ikihaberbirslider-section .yazar-item.no-border {
    border-bottom: none;
}

.ikihaberbirslider-section .yazar-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.ikihaberbirslider-section .yazar-bilgi span {
    margin: 0;
    font-size: 1em;
    font-weight: 900;
}

.ikihaberbirslider-section .yazar-bilgi span a {
    text-decoration: none;
    color: #000;
}

.ikihaberbirslider-section .yazar-bilgi p {
    margin: 0;
    font-size: 0.9em;
}

.ikihaberbirslider-section .yazar-bilgi p a {
    text-decoration: none;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 280px;
    display: inline-block;
}

.ikihaberbirslider-section .slick-prev {
    transform: rotate(90deg);
    left: unset;
    right: 30px;
    top: -30px;
    z-index: 2;
}

.ikihaberbirslider-section .slick-next {
    transform: rotate(90deg);
    right: 5px;
    top: -30px;
    z-index: 2;
}

.ikihaberbirslider-section .slick-next:before, .ikihaberbirslider-section .slick-prev:before {
    color: #fff;
}

footer {
    background-color: #3e3e3e;
    color: #fff;
    font-family: Arial, sans-serif;
    width: 100%;
    padding: 20px 0;
    background-image: url('../images/footerbg.png');
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: center top;
    border-top: 3px solid #6e6e6e;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-top-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #5e5e5e;
}

.footer-top-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-icons a {
    margin: 0 10px;
    color: #fff;
    display: inline-block;
}

.footer-icons a:hover {
    color: #cb1515;
}

.footer-icons a i {
    font-size: 40px;
}

.store-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #5e5e5e;
}

.store-social.center{
    justify-content: center;
}

.footer-app-links a {
    margin: 0;
}

.footer-app-links img {
    width: 120px;
    height: auto;
}

.footer-social-media a {
    margin: 0 10px;
    color: #fff;
}

.footer-social-media a:hover {
    color: #cb1515;
}

.footer-social-media i {
    font-size: 30px;
}

.footer-category-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #5e5e5e;
}

.footer-contact-info {
    width: 25%;
}

.footer-contact-info a {
    text-decoration: none;
    color: #fff;
}

.footer-contact-info a i {
    color: #cb1515;
}

.footer-contact-info img {
    height: 50px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #ccc;
}

.footer-disclaimer b, .footer-disclaimer strong {
    color: #cb1515;
}

.footer-categories {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.footer-category {
    width: 22%;
}

.footer-category h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-category ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-category ul li {
    font-size: 16px;
}

.footer-category ul li a {
    text-decoration: none;
    color: #ddd;
}

.footer-category ul li a:hover {
    text-decoration: none;
    color: #cb1515;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.copyright.center {
    justify-content: center;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.breadcrumb-container {
    width: 100%;
    background-color: #CB1515;
    padding: 10px 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb span {
    color: #ffffff;
}

.single-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.single-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.single-content {
    width: 70%;
    height: 100%;
    margin-top: 20px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 10px;
}

.page-content h1 {
    font-size: 32px;
    font-weight: bold;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.page-content {
    width: 70%;
    height: 100%;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 10px;
}

.post-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.post-dates p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0;
}

.social-and-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.social-share, .print-and-mail {
    display: flex;
    gap: 8px;
}

.social-share a, .print-and-mail a {
    text-decoration: none;
    color: #cb1515;
    font-size: 14px;
    padding: 8px 12px;
    background-color: #f2f2f2;
    border-radius: 4px;
}

.social-share a:hover, .print-and-mail a:hover {
    background-color: #cb1515;
    color: #fff;
}

.post-content {
    font-size: 16px;
    margin-top: 20px;
}

.pagebreak {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pagebreak .prev-button a,
.pagebreak .next-button a {
    background-color: #cb1515;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.pagebreak .prev-button a:hover,
.pagebreak .next-button a:hover {
    background-color: #891a1a;
}

.pagebreak .page-info {
    background-color: #891a1a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

.single-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.single-pagination a,
.single-pagination span {
    margin: 10px 2px;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #cb1515;
    color: #cb1515;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.single-pagination a:hover {
    background-color: #891a1a;
    border: 1px solid #891a1a;
    color: #fff;
}

.single-pagination .current {
    background-color: #cb1515;
    color: #fff;
    border: 1px solid #cb1515;
    padding: 5px 10px;
}

.ana-icerik .pagination ul.page-numbers {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.ana-icerik .pagination ul.page-numbers li a,
.ana-icerik .pagination ul.page-numbers li span {
    margin: 10px 2px;
    padding: 5px 10px;
    font-size: 1.1em;
    text-decoration: none;
    border: 1px solid #cb1515;
    color: #cb1515;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.ana-icerik .pagination ul.page-numbers li a:hover {
    background-color: #891a1a;
    border: 1px solid #891a1a;
    color: #fff;
}

.ana-icerik .pagination ul.page-numbers li .current {
    background-color: #cb1515;
    color: #fff;
    border: 1px solid #cb1515;
    padding: 5px 10px;
}

.post-tags p {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    color: #891a1a;
}

.post-tags p a {
    text-decoration: none;
    color: #cb1515;
    font-weight: 500;
    margin: 2px;
    padding: 8px 12px;
    background-color: #f2f2f2;
    border-radius: 4px;
}

.post-tags p a:hover {
    color: #f2f2f2;
    background-color: #cb1515;
}

.post-content img {
    max-width: 100%;
    height: 100%;
}

.related-posts-alt {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.related-item {
    width: 32%;
    text-align: center;
}

.related-item h4 {
    font-size: 16px;
    margin-top: 10px;
}

.related-item a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.related-item img {
    border-radius: 5px;
}

.related-item a:hover {
    color: #cb1515;
}

.sidebar {
    width: 30%;
    padding: 20px;
    border-radius: 8px;
}

.sidebar .search-section, .sidebar .latest-news, .sidebar .most-read {
    position: relative;
    background-color: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.sidebar .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.sidebar .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.sidebar .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.sidebar .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.sidebar .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.sidebar .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.sidebar .sidebar-arama {
    background-color: #f9f9f9;
    padding: 20px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.sidebar .sidebar-arama form {
    position: relative;
}

.sidebar .sidebar-arama form input {
    width: calc(100% - 40px);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    background-color: #b0b4b7;
    color: #f5f4f4;
}

.sidebar .sidebar-arama form input::placeholder {
    color: #f5f4f4;
}

.sidebar .sidebar-arama form input:focus {
    background-color: #fff;
    border: none;
    outline: none;
    color: #cb1515;
}

.sidebar .sidebar-arama form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    border: none;
    padding: 0;
    background: none;
    color: #f5f4f4;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.sidebar .sidebar form button:hover {
    color: #891a1a;
}

.sidebar .sidebar-arama form input:focus + button {
    color: #cb1515;
}

.latest-news, .ad-space, .most-read {
    margin-top: 30px;
}

.latest-news ul {
    list-style-type: none;
    margin: 0;
    padding: 10px 15px 5px 20px;
}

.latest-news ul li {
    border-bottom: 1px solid #ececec;
}

.latest-news ul li:last-child {
    border-bottom: none;
}

.latest-news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0;
    padding: 3px 0;
}

.latest-news-thumbnail img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.latest-news-text a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.latest-news-text a:hover {
    color: #cb1515;
    text-decoration: underline;
}

.ad-space img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.most-read ul {
    list-style-type: none;
    margin: 0;
    padding: 10px 20px;
}

.most-read ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

.most-read ul li:last-child {
    padding: 10px 0;
    border-bottom: none;
}

.most-read ul li i {
    font-size: 15px;
    padding: 5px;
    margin-right: 5px;
    background-color: #cb1515;
    color: #fff;
    border-radius: 50%;
}

.most-read ul li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.most-read ul li a:hover {
    color: #cb1515;
}

.comments-section {
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.comments-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.comments-section a {
    text-decoration: none;
    color: #cb1515;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ececec;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.comment-list li.parent {
    border-left: 4px solid #891a1a;
}

.comment-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
}

.comment-list ul li {
    margin-bottom: 0;
}

.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.comment-author img {
    border-radius: 50%;
}

.author-name {
    font-weight: bold;
    color: #333;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-content {
    font-size: 14px;
    color: #555;
}

.comment-reply {
    margin-top: 10px;
}

.comment-reply a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.comment-reply a:hover {
    text-decoration: underline;
}

.no-comments {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.comment-form {
    margin-top: 40px;
}

.comment-form label {
    font-size: 14px;
    color: #333;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 97%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
}

.comment-form input[type="submit"] {
    background: #891a1a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background: #cb1515;
}

.kategori-icerik {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.ana-icerik {
    width: 70%;
    height: 100%;
    margin-top: 20px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 10px;
}

.icerik-sagbolum {
    width: 30%;
    padding: 15px;
    border-radius: 8px;
}

.icerik-sagbolum .baslikbolum {
    display: flex;
    justify-content: space-between;
    background-color: #cb1515;
    border-bottom: 3px solid #891a1a;
    box-shadow: 2px 2px 10px #cecece;
}

.icerik-sagbolum .bolumbaslik {
    margin: 0;
    padding: 6px 10px;
    font-size: 1.2em;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 5px #110055;
}

.icerik-sagbolum .bolumbaslikonce::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 2;
}

.icerik-sagbolum .bolumbaslikonce::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-left: 10px solid transparent;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 2;
}

.icerik-sagbolum .bolumbasliksonra::before {
    content: '';
    width: 10px;
    height: 35px;
    background-color: #cb1515;
    border-radius: 0 8px 0 0;
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 2;
}

.icerik-sagbolum .bolumbasliksonra::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #891a1a;
    border-right: 10px solid transparent;
    position: absolute;
    top: 35px;
    right: -10px;
    z-index: 2;
}

.ana-icerik .haber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ana-icerik span {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    margin: 20px auto;
}

.icerik-sagbolum .encokokunanlar, .icerik-sagbolum .reklam-alani, .icerik-sagbolum .sonyorumlananlar {
    position: relative;
    margin-top: 30px;
}

.icerik-sagbolum .encokokunanlar, .icerik-sagbolum .sonyorumlananlar {
    background: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-bottom: 5px;
}

.ana-icerik .haber-item {
    text-align: center;
}

.ana-icerik .haber-item a {
    text-decoration: none;
}

.ana-icerik .haber-item a:hover {
    text-decoration: none;
    color: #cb1515;
}

.ana-icerik .haber-resim img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
}

.ana-icerik .haber-baslik h2 {
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}

.icerik-sagbolum-slider {
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.icerik-sagbolum-slider .slider-item {
    position: relative;
    text-align: center;
    padding: 20px;
}

.icerik-sagbolum-slider .slider-item a {
    color: #000;
    text-decoration: none;
}

.icerik-sagbolum-slider .slider-item a h3 {
    display: inline-block;
    width: 100%;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 50px;
}

.icerik-sagbolum-slider .slider-item img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.icerik-sagbolum-slider .slick-dots {
    position: absolute;
    bottom: 15px;
    display: block;
    width: 100%;
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.icerik-sagbolum-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: auto;
    margin: 0 10px;
    padding: 0 0 5px 0;
    cursor: pointer;
}

.icerik-sagbolum-slider .slick-dots li.slick-active button {
    font-family: 'Montserrat';
    background-color: #891a1a;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 30px;
    position: relative;
    border-radius: 50%;
}

.icerik-sagbolum-slider .slick-dots li button {
    font-family: 'Montserrat';
    background-color: #cb1515;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 30px;
    position: relative;
    border-radius: 50%;
}

.icerik-sagbolum-slider .slick-dots li button:before {
    all: unset;
}

.icerik-sagbolum-slider .slick-dotted.slick-slider {
    margin-bottom: 0;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.icerik-sagbolum-slider .slick-prev {
    left: 10px;
    top: unset;
    bottom: 25px;
    z-index: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.icerik-sagbolum-slider .slick-next {
    right: 20px;
    top: unset;
    bottom: 25px;
    z-index: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.icerik-sagbolum-slider .slick-next:before, .icerik-sagbolum-slider .slick-prev:before {
    color: #cb1515;
    font-size: 30px;
}

.icerik-sagbolum-slider .slick-prev:hover:before, .icerik-sagbolum-slider .slick-next:hover:before {
    color: #891a1a;
}

.encokokunanlar ul {
    list-style: none;
    padding: 0;
}

.encokokunanlar-item {
    position: relative;
    text-align: center;
    color: white;
    margin: 10px 20px;
}

.encokokunanlar-item img {
    width: 100%;
    border-radius: 8px;
}

.encokokunanlar-item .overlay-baslik {
    position: absolute;
    width: 85%;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 10%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
}

.reklam-alani img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.sonyorumlananlar ul {
    list-style: none;
    margin: 10px 0;
    padding: 0 20px;
}

.sonyorumlananlar ul li {
    border-bottom: 1px solid #ececec;
    padding: 5px 0;
}

.sonyorumlananlar ul li:last-child {
    padding: 5px 0 0 0;
    border-bottom: none;
}

.sonyorumlananlar ul li a {
    text-decoration: none;
}

.sonyorumlananlar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sonyorumlananlar-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sonyorumlananlar-item span {
    font-size: 14px;
    color: #333;
}


.puan-durumlari-sayfa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.puan-durumlari-container {
    text-align: center;
}

.lig-secim-form {
    margin-bottom: 20px;
}

.lig-secim-form select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.puan-durumlari-tablo {
    overflow: hidden;
}

.puan-durumlari-tablo table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.puan-durumlari-tablo thead tr {
    background-color: #fff;
    border-bottom: 2px solid rgb(88 88 91 / .1);
}

.puan-durumlari-tablo thead tr th {
    color: #cb1515;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

.puan-durumlari-tablo tbody tr {
    border-bottom: 1px solid #ececec;
}

.puan-durumlari-tablo tbody tr td {
    text-align: center;
    padding: 10px;
}

.puan-durumlari-tablo tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.puan-durumlari-tablo tbody tr td:nth-child(2) {
    text-align: left;
    font-weight: bold;
}

.puan-durumlari-tablo tbody tr td:nth-child(10) {
    font-weight: bold;
}

.nobetci-eczaneler {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.nobetci-eczaneler #eczane-sayfa-basligi {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
}

.nobetci-eczaneler hr {
    margin: 20px 0;
    color: #ececec;
}

.nobetci-eczaneler form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.nobetci-eczaneler label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.nobetci-eczaneler select.form-control {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.nobetci-eczaneler form .btn {
    flex: 0 1 auto;
    padding: 0.85rem;
    background-color: #891a1a;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nobetci-eczaneler form .btn:hover {
    background-color: #cb1515;
}

.nobetci-eczaneler .eczane-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nobetci-eczaneler .eczane-card {
    width: 375px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.nobetci-eczaneler .eczane-card:hover {
    transform: scale(1.05);
}

.nobetci-eczaneler .eczane-logo {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ececec;
    background-color: #f8f8f8;
}

.nobetci-eczaneler .eczane-logo img {
    width: 25px;
    margin: 10px 5px;
}

.nobetci-eczaneler .eczane-logo span {
    color: #cb1515;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}

.nobetci-eczaneler .eczane-info {
    padding: 10px 15px;
    text-align: center;
    background-color: #fff;
}

.nobetci-eczaneler .eczane-info p {
    margin: 5px 0;
    font-size: 14px;
}

.nobetci-eczaneler .eczane-actions {
    padding: 10px 15px;
    display: flex;
    border-top: 1px solid #ececec;
    background-color: #f8f8f8;
    align-items: flex-end;
    justify-content: space-evenly;
}

.nobetci-eczaneler .eczane-actions a {
    text-decoration: none;
    color: white;
    background-color: #cb1515;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.nobetci-eczaneler .eczane-actions a:hover {
    background-color: #b71c1c;
}

.namaz-vakitleri {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.namaz-vakitleri h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.namaz-vakitleri .namaz-form {
    text-align: center;
    margin-bottom: 20px;
}

.namaz-vakitleri select.form-control {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.namaz-vakitleri form .btn {
    flex: 0 1 auto;
    padding: 0.85rem;
    background-color: #891a1a;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.namaz-vakitleri form .btn:hover {
    background-color: #cb1515;
}

.namaz-vakitleri .bugun-namaz {
    background: #fff8e1;
}

.namaz-vakitleri .bugun-ust {
    padding: 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.namaz-vakitleri .bugun-alt ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.namaz-vakitleri .bugun-ust p, .namaz-vakitleri .bugun-alt ul li {
    margin: 0 10px 10px;
}

.namaz-vakitleri .bugun-alt ul li {
    text-align: center;
}

.namaz-vakitleri .bugun-alt ul li strong {
    display: block;
}

.namaz-vakitleri .bugun-alt ul li span {
    font-size: 30px;
}

.namaz-vakitleri .aktif-vakit {
    color: #cb1515;
    font-weight: 900;
}

.namaz-vakitleri .namaz-vakitleri-tablosu {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.namaz-vakitleri .namaz-vakitleri-tablosu th, .namaz-vakitleri .namaz-vakitleri-tablosu td {
    border: 1px solid #ececec;
    padding: 10px;
    text-align: center;
}

.namaz-vakitleri .namaz-vakitleri-tablosu th {
    background: #f4f4f4;
    font-weight: bold;
}

.stock-tables {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
}

.stock-table {
    flex: 1;
    min-width: 300px;
    display: flex;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
}

.stock-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.stock-table th, .stock-table td {
    padding: 10px;
    text-align: center;
}

.stock-table tr {
    border-bottom: 1px solid #ececec;
}

.stock-table tr:last-child {
    border-bottom:none;
}

.stock-table th {
    background-color: #f7f7f7;
    color: #333;
    font-weight: bold;
}

.stock-table tr:hover {
    background-color: #f1f1f1;
}

.hava-durumu-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.baslik-sol {
    font-size: 1.5rem;
    font-weight: bold;
}

.il-secimi-form {
    display: flex;
    gap: 10px;
}

.il-secimi {
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.il-secimi-buton {
    padding: 8px 12px;
    background-color: #891a1a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.il-secimi-buton:hover {
    background-color: #0056b3;
}

.hava-durumu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.bugun-hava-durumu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bugun-hava-durumu .sol-kisim {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bugun-hava-durumu .sol-kisim img {
    width: 125px;
}

.bugun-hava-durumu .sol-kisimsol {
    width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bugun-hava-durumu .sol-kisimsag {
    width: 50%;
    text-align: left;
}

.bugun-hava-durumu .derece {
    font-size: 3rem;
    font-weight: bold;
    color: #891a1a;
}

.bugun-hava-durumu .durum {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

.bugun-hava-durumu .sag-kisim {
    width: 50%;
    text-align: left;
    border-left: 1px solid #ececec;
    padding: 0 50px;
}

.bugun-hava-durumu .sag-kisim h3 {
    font-size: 2rem;
    font-weight: bold;
}

.bugun-hava-durumu .hava-detay-listesi {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.bugun-hava-durumu .hava-detay-listesi li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bugun-hava-durumu .hava-durumu-aciklama {
    font-size: 1rem;
    margin-top: 20px;
    color: #666;
}

.haftalik-hava-durumu {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);;
}

.haftalik-hava-durumu .gunluk-hava-durumu {
    border: 1px solid #ececec;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.haftalik-hava-durumu .gunluk-tarih {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.haftalik-hava-durumu .gunluk-hava-detay {
    display: flex;
    justify-content: space-between;
}

.haftalik-hava-durumu .sol-kisim {
    width: 50%;
    text-align: center;
}

.haftalik-hava-durumu .hava-resim {
    width: 125px;
}

.haftalik-hava-durumu .derece {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.haftalik-hava-durumu .durum {
    font-size: 22px;
    color: #555;
    font-weight: 700;
}

.haftalik-hava-durumu .sag-kisim {
    width: 50%;
    text-align: left;
}

.haftalik-hava-durumu .hava-detay-listesi {
    list-style: none;
    padding: 0;
}

.haftalik-hava-durumu .hava-detay-listesi li {
    margin-bottom: 8px;
    font-size: 14px;
}

.haftalik-hava-durumu .hava-durumu-aciklama {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 15px;
}

.genel-wrapper {
    position: relative;
}

.genel-wrapper .genel-content-area {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.genel-wrapper .dikey-reklam-sol {
    position: absolute;
    top: 30px;
    left: 140px;
    width: 160px;
    height: 600px;
    z-index: 999;
}

.genel-wrapper .dikey-reklam-sol img, .genel-wrapper .dikey-reklam-sag img {
    border-radius: 5px;
}

.genel-wrapper .dikey-reklam-sag {
    position: absolute;
    top: 30px;
    right: 140px;
    width: 160px;
    height: 600px;
    z-index: 999;
}

.genel-wrapper .yatay-reklam {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    padding: 0;
}

.genel-wrapper .yatay-reklam img {
    width: 100%;
    height: 150px;
    border-radius: 5px;
}

.yukari-cik {
    background-color: transparent;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #cb1515;
    border-radius: 5px;
    width: 0;
    height: 0;
    line-height: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    display: none;
    z-index: 337;
    transition: 0.3s;
}

.yukari-cik:hover, .yukari-cik:focus {
    border-bottom: 50px solid #891a1a;
    color: #fff;
}

.yukari-cik i {
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    font-size: 20px;
}

.login-register-page {
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.left-section,
.right-section {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.left-section {
	background: url('../images/haricibg.png') no-repeat center center;
	background-size: cover;
	color: #fff;
	text-align: center;
	padding: 20px;
}

.left-section h1 {
	font-size: 40px;
	margin-bottom: 15px;
}

.left-section p {
	font-size: 18px;
}

.right-section {
	background: #fff5f5;
	flex-direction: column;
	padding: 50px 20px;
}

.right-section .logo {
	margin-bottom: 30px;
}

.form-container {
	width: 100%;
	max-width: 400px;
}

.form-container label {
	color: #666;
	margin-bottom: 5px;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus,
.form-container input[type="email"]:focus {
    outline: none;
    border-color: #cb1515;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.form-options a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
}

.form-options a:hover {
	color: #cb1515;
	text-decoration: none;
}

.form-container .input-row {
	display: flex;
	gap: 15px;
}

.form-container form p {
    font-size: 12px;
    color: #666;
    margin: -10px 10px 20px 10px;
}

.form-container button {
	width: 100%;
	padding: 12px;
	background: linear-gradient(90deg, #cb1515, #891a1a);
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.form-container button:hover {
	background: linear-gradient(90deg, #891a1a, #cb1515);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.register-section {
	text-align: center;
	margin-top: 30px;
}

.register-section p {
	color: #666;
	font-size: 16px;
	margin-bottom: 15px;
}

.register-section .register-btn {
	display: inline-block;
	padding: 12px 20px;
	background: linear-gradient(90deg, #891a1a, #cb1515);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.register-section .register-btn:hover {
	background: linear-gradient(90deg, #cb1515, #891a1a);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.login-section {
	text-align: center;
	margin-top: 30px;
}

.login-section p {
	color: #666;
	font-size: 16px;
	margin-bottom: 15px;
}

.login-section .login-btn {
	display: inline-block;
	padding: 12px 20px;
	background: linear-gradient(90deg, #891a1a, #cb1515);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-section .login-btn:hover {
	background: linear-gradient(90deg, #cb1515, #891a1a);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.reset-password-page {
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.sayfa404 {
    margin: 50px auto;
    text-align: center;
}

.sayfa404 img {
    max-width: 100%;
}

.sayfa404 p {
    margin: 0;
    padding: 0 20px;
}

.sayfa404 p a {
    text-decoration: none;
    color: #cb1515;
}

.sayfa404 p a:hover {
    text-decoration: none;
    color: #891a1a;
}

.yazarlar-kapsayici {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.yazarlar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.yazar-karti {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.yazar-karti:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.yazar-avatar img {
    border-radius: 50%;
    margin-right: 15px;
    width: 120px;
    height: 120px;
}

.yazar-bilgileri {
    display: flex;
    flex-direction: column;
}

.yazar-bilgileri h2 {
    margin: 5px 0;
}

.yazar-adi a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.yazar-adi a:hover {
    text-decoration: underline;
}

.son-yazi a {
    font-size: 1rem;
    color: #891a1a;
    text-decoration: none;
}

.son-yazi a:hover {
    text-decoration: underline;
}

.yazi-tarihi {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

#mesaj-gonderildi {
    position: fixed;
    height: 40px;
    top: 50px;
    right: 10px;
    line-height: 20px;
    padding: 10px;
    background-color: green;
    color: white;
    border-radius: 5px;
    transition: all 5s ease-in-out;
    z-index: 9999;
}

.contact-form {
    width: calc(100% - 60px);
    margin: 0 0 30px 0;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form .submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #891a1a;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #cb1515;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #20ad38;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: background 0.3s;
}

.whatsapp-icon:hover { background: #20b358; }
.whepsinegoster { display: flex; }
.wmasaustugoster { display: flex; }
.wmobilgoster { display: none; }

@media (max-width: 991px) {
    .wmasaustugoster { display: none; }
    .wmobilgoster { display: flex; }
}

.whatsapp-uyari {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 1002;
}

.whatsapp-container {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-hidden {
    display: none;
}

.whatsapp-chat {
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 15px;
    background-color: #095E54;
    color: #fff;
}

.whatsapp-thumb i {
    font-size: 30px;
    margin-right: 10px;
    color: #F0F0F0;
    padding: 5px 0;
}

.whatsapp-thumb img {
    background-color: #F0F0F0;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    object-position: center;
}

.whatsapp-headname {
    flex-grow: 1;
    padding-top: 2px;
    font-size: 15px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.whatsapp-close {
    cursor: pointer;
    padding: 2px 10px 0 10px;
    background: rgba(255,255,255,.05);
    border-radius: 3px;
    color: #fff;
}

.whatsapp-message {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
    background-color: #F0F0F0;
}

.whatsapp-message::-webkit-scrollbar {
    width: 5px;
}

.whatsapp-message::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}

.whatsapp-bubble:nth-child(1) {
    background-color: #DCF8C6;
    padding: 10px;
    border-radius: 0 5px 5px;
    margin: 10px 0 5px 10px;
    position: relative;
}

.whatsapp-bubble:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-bottom-color: #DCF8C6;
    border-top: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 3px;
}

.whatsapp-bubble {
    background-color: #DCF8C6;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0 10px 10px;
    position: relative;
}

.whatsapp-text {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    flex-grow: 1;
    min-width: 0;
    font-size: 13px;
    color: #0a0e1e;
}

.whatsapp-reply {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 29.6px;
}

.whatsapp-reply a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #20ad38;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}

.whatsapp-durum {
    margin-top: -5px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    justify-content: flex-end;
}

.whatsapp-durum .goruldu {
    color: #25b3d3;
}

.cerez-uyari {
    display: none;
    position: fixed;
    bottom: 15px;
	left: 15px;
	right: 15px;
    background-color: rgb(137 26 26 / 95%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    z-index: 9999;
    font-size: 14px;
	text-align: center;
	line-height: 25px;
}
.cerez-uyari h3 {
    margin-top: 0;
    font-size: 16px;
}
.cerez-uyari p {
    margin-bottom: 15px;
    font-size: 14px;
}
.cerez-uyari a {
    text-decoration: underline;
}
.cerez-buton {
    background-color: #cb1515;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
	margin-left: 5px;
    cursor: pointer;
}
.cerez-buton:hover {
    background-color: #218838;
}
.cerez-buton#cerezreddet {
    background-color: #1e0202;
}
.cerez-buton#cerezreddet:hover {
    background-color: #dc3545;
}
.cerez-buton-alan {
    display: flex;
    justify-content: center;
}
.cerez-kapat-buton {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

@media (max-width: 1600px) {
    .genel-wrapper .dikey-reklam-sol, .genel-wrapper .dikey-reklam-sag {
        display: none;
	}
}

@media (max-width: 1200px) {
    .bolumbaslikonce, .bolumbasliksonra {
        display: none;
	}
    .baslikbolum {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
	}
    .genel-wrapper .dikey-reklam-sol, .genel-wrapper .dikey-reklam-sag {
        display: none;
	}
    .main-menu {
        display: none;
	}
    .topbar-buttons {
        padding: 0 20px;
	}
    .kayanhaberler .haberikon {
        width: 90px;
        padding: 0;
	}
    .kayanhaberler .haberikon .habertitle {
        padding: 0 0 0 20px;
	}
    .kayanhaberler .habermarquee {
        padding: 10px 10px 10px 0;
	}
    .kayanhaberler .habermarqueebolumsonra {
        height: 30px;
        border: 5px solid #cb1515;
	}
    .search-login {
        display: none;
	}
    .gundem-slider .overlay {
        bottom: 27px;
	}
    .gundem-slider .slick-dots {
        padding: 3px 0;
	}
    .gundem-slider .slick-dots li {
        width: 5px;
        margin: 3px 5px;
	}
    .gundem-slider .slick-dots li button {
        background-color: #8a8a8a;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-dots li.slick-active button {
        background-color: #fff;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-prev, .gundem-slider .slick-next {
        bottom: 5px;
	}
    .sicak-slider .hot-slider {
        background: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .gazeteler-slider {
        margin: 30px auto 0 auto;
        padding: 10px;
        background-color: unset;
        box-shadow: unset;
	}
    .gazeteler-slider .gazete-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
        box-sizing: border-box;
	}
    .ikigenisikidarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-bolum {
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum.genis {
        margin-right: 20px;
	}
    .ikigenisikidarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisikidarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisikidarhaber-bolum-parca {
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum-parca.alt {
        margin-top: 30px;
	}
    .ikilihaber-bolum {
        border: unset;
        box-shadow: unset;
	}
    .ikilihaber-bolum:first-child {
        margin: 0 auto;
	}
    .ikilihaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        position: relative;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ucluhaber-section {
        margin: 30px auto 0 auto;
        padding: 10px;
	}
    .ucluhaber-bolum {
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ucluhaber-bolum:first-child {
        margin-right: 15px;
	}
    .ucluhaber-bolum:last-child {
        margin-left: 15px;
	}
    .ucluhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisbirdarhaber-bolum {
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisbirdarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisbirdarhaber-bolum.dar {
        background-color: unset;
	}
    .ikigenisbirdarhaber-bolum:first-child {
        margin-right: 15px;
	}    
    .ikigenisbirdarhaber-bolum:last-child {
        margin-left: 15px;
	}
    .ikigenisbirdarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-bolum.dar .puandurumutam {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section {
        margin: 30px auto 0 auto;
	}
    .ikihaberbirslider-bolum:first-child {
        margin-right: 15px;
	}
    .ikihaberbirslider-bolum:last-child {
        margin-left: 15px;
	}
    .ikihaberbirslider-bolum {
        margin: 0 auto;
        background-color: unset;
        box-shadow: unset;
	}
    .ikihaberbirslider-section .haberler, .ikihaberbirslider-section .numaralar, .ikihaberbirslider-section .yazarlar-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section .haber-resim {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .numara-item span {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .yazar-avatar {
        margin-right: 5px;
	}
    .fotogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .fotogaleri-slider .foto-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .videogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .videogaleri-slider .video-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    footer.footer {
        margin-top: 30px;
	}
    .categories-section {
        padding: 50px;
        flex-wrap: wrap;
	}
    .footer-bottom {
        padding: 10px 20px;
	}
    .yukari-cik {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #cb1515;
        bottom: 20px;
        right: 20px;
	}
    .yukari-cik:hover, .yukari-cik:focus {
        border-bottom: 40px solid #891a1a;
	}
    .yukari-cik i {
        transform: translate(-50%, 90%);
	}
    .breadcrumb {
        display: block;
        text-align: center;
	}
    .breadcrumb span {
        padding: 0 10px;
	}
    .post-dates {
        flex-wrap: wrap;
	}
    .ana-icerik {
        margin: 20px auto 20px 20px;
        padding: 0;
	}
    .ana-icerik span {
        text-align: center;
	}
    .ana-icerik .haber-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
	}
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
	}
    
    .menu-toggle, .login-btn {
        background: none;
        border: 2px solid #cb1515;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 20px;
        color: #cb1515;
	}
    
    .menu-toggle:hover, .login-btn:hover {
        color: #e85b51;
	}
	
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 999998;
	}
	
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 275px;
        background-color: #f8f9fa;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease-in-out;
	}
	
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-header .logo img {
        height: 40px;
	}
    
    .mobile-menu-header .close-menu {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
	}
	
    .mobile-menu-social {
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-social p {
        font-size: 16px;
        margin-bottom: 10px;
	}
    
    .mobile-menu-social ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        list-style-type: none;
	}
    
    .mobile-menu-social a {
        font-size: 18px;
        color: #333;
        text-decoration: none;
	}
    
    .mobile-menu-social a:hover {
        color: #e85b51;
	}
	
    .mobile-menu-scroll {
        flex-grow: 1;
        overflow-y: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-scroll ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 450px;
	}
    
    .mobile-menu-scroll ul.sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0 20px;
        height: auto;
	}
    
    .mobile-menu-scroll li {
        position: relative;
        margin-bottom: 10px;
	}
    
    .mobile-menu-scroll a {
        position: relative;
        color: #000;
        text-decoration: none;
        padding: 10px;
        display: block;
        border-radius: 4px;
	}
    
    .mobile-menu-scroll a::before {
        content: '';
        position: absolute;
        width: 90%;
        height: 1px;
        background-color: #ececec;
        right: 20px;
        bottom: -5px;
	}
    
    .mobile-menu-scroll > ul > li:last-child > a::before {
        content: none;
	}
	
    .mobile-menu-scroll a:hover {
        color: #e85b51;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a {
        position: relative;
        padding-right: 30px;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a::after {
        content: '\f107';
        font-family: FontAwesome;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        background-color: #333;
        color: #fff;
        padding: 4px 5px;
        border-radius: 50%;
	}
    
    .mobile-menu-scroll .menu-item-has-children.open > a::after {
        content: '\f106';
	}
	
    .mobile-menu-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        gap: 10px;
        width: 100%;
        height: auto;
        padding-bottom: 100px;
	}
    .mobile-menu-footer .topbar-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #cb1515;
        border: none;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        text-decoration: none;
        width: 70%;
	}
	
    .mobile-menu-footer .topbar-btn:hover {
        background: #891a1a;
        color: #fff;
	}
    
    .mobile-menu-footer .topbar-btn img {
        width: 30px;
        height: 30px;
        margin-right: 5px;
        border-radius: 5px;
	}
}

@media (max-width: 991px) {
    .bolumbaslikonce, .bolumbasliksonra {
        display: none;
	}
    .baslikbolum {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
	}
    .genel-wrapper .dikey-reklam-sol, .genel-wrapper .dikey-reklam-sag {
        display: none;
	}
    .genel-wrapper .yatay-reklam {
        max-width: 700px;
	}
    .genel-wrapper .yatay-reklam img {
        height: 110px;
	}
    .main-menu {
        display: none;
	}
    .currency-slider {
        width: 100%;
	}
    .topbar-buttons {
        display: none;
	}
    .kayanhaberler .haberikon {
        width: 90px;
        padding: 0;
	}
    .kayanhaberler .haberikon .habertitle {
        padding: 0 0 0 20px;
	}
    .kayanhaberler .habermarquee {
        padding: 10px 10px 10px 0;
	}
    .kayanhaberler .habermarqueebolumsonra {
        height: 30px;
        border: 5px solid #cb1515;
	}
    .search-login {
        display: none;
	}
    .news-container {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
	}
    .gundem-slider {
        width: 100%;
	}
    .gundem-slider .overlay {
        bottom: 27px;
	}
    .gundem-slider .slick-dots {
        padding: 3px 0;
	}
    .gundem-slider .slick-dots li {
        width: 5px;
        margin: 3px 5px;
	}
    .gundem-slider .slick-dots li button {
        background-color: #8a8a8a;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-dots li.slick-active button {
        background-color: #fff;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-prev, .gundem-slider .slick-next {
        bottom: 5px;
	}
    .sicak-slider {
        width: 100%;
        margin: 30px auto 0 auto;
        background: unset;
        box-shadow: unset;
	}
    .sicak-slider .hot-slider {
        background: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .gazeteler-slider {
        margin: 30px auto 0 auto;
        padding: 10px;
        background-color: unset;
        box-shadow: unset;
	}
    .gazeteler-slider .gazete-slider {
        height: 400px;
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
        box-sizing: border-box;
	}
    .gazeteler-slider .gazete-slider .gazete-item {
        height: 375px;
	}
    .ikigenisikidarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikigenisikidarhaber-bolum {
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum.genis:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-bolum.genis {
        width: 100%;
        margin: 0 auto;
	}
    .ikigenisikidarhaber-bolum.dar {
        width: 100%;
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisikidarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisikidarhaber-bolum-parca {
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum-parca.alt {
        margin-top: 30px;
	}
    .ikigenisikidarhaber-bolum-parca .namaz-bilgi {
        padding: 10px 60px;
	}
    .ikilihaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikilihaber-bolum {
        width: 100%;
        margin: 0 auto;
        border: unset;
        box-shadow: unset;
	}
    .ikilihaber-bolum:first-child {
        margin: 0 auto;
	}
    .ikilihaber-bolum:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ikilihaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        position: relative;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ucluhaber-section {
        margin: 30px auto 0 auto;
        padding: 10px;
	}
    .ucluhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ucluhaber-bolum {
        width: 100%;
        margin: 0 auto;
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ucluhaber-bolum:first-child {
        margin: 0 auto;
	}    
    .ucluhaber-bolum:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ucluhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisbirdarhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikigenisbirdarhaber-bolum {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisbirdarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisbirdarhaber-bolum.dar {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
	}
    .ikigenisbirdarhaber-bolum:first-child {
        margin: 0 auto;
	}    
    .ikigenisbirdarhaber-bolum:last-child {
        margin: 30px auto 0 auto;
	}
    .ikigenisbirdarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-bolum.dar .puandurumutam {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section {
        margin: 30px auto 0 auto;
	}
    .ikihaberbirslider-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikihaberbirslider-bolum {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
	}
    .ikihaberbirslider-bolum:first-child, .ikihaberbirslider-bolum:last-child {
        margin: 0 auto;
	}
    .ikihaberbirslider-section .haberler, .ikihaberbirslider-section .numaralar, .ikihaberbirslider-section .yazarlar-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section .haber-resim {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .numara-item span {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .yazar-avatar {
        margin-right: 5px;
	}
    .fotogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .fotogaleri-slider .foto-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .videogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .videogaleri-slider .video-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    footer.footer {
        margin-top: 30px;
	}
    .footer-top {
        flex-direction: column;
        flex-wrap: wrap;
	}
    .categories-section {
        padding: 50px;
        flex-wrap: wrap;
	}
    .footer-bottom {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 10px;
	}
    .yukari-cik {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #cb1515;
        bottom: 20px;
        right: 20px;
	}
    .yukari-cik:hover, .yukari-cik:focus {
        border-bottom: 40px solid #891a1a;
	}
    .yukari-cik i {
        transform: translate(-50%, 90%);
	}
    .breadcrumb {
        display: block;
	}
    .breadcrumb span {
        padding: 0 10px;
	}
    .single-container {
        flex-wrap: wrap;
        flex-direction: column;
	}
    .sidebar {
        width: 100%;
        padding: 0;
	}
    .single-content {
        width: calc(100% - 40px);
        margin: 20px auto;
	}
    .page-content {
        width: calc(100% - 40px);
	}
    .post-dates {
        flex-wrap: wrap;
	}
    .related-item {
        width: 48%;
	}
    .kategori-icerik {
        flex-wrap: wrap;
        flex-direction: column;
	}
    .ana-icerik {
        width: calc(100% - 40px);
        margin: 20px auto;
        padding: 0;
	}
    .icerik-sagbolum {
        width: calc(100% - 30px);
	}
    .ana-icerik span {
        text-align: center;
	}
    .ana-icerik .haber-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
	}
	
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
	}
    
    .menu-toggle, .login-btn {
        background: none;
        border: 2px solid #cb1515;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 20px;
        color: #cb1515;
	}
    
    .menu-toggle:hover, .login-btn:hover {
        color: #e85b51;
	}
	
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 999998;
	}
	
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 275px;
        background-color: #f8f9fa;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease-in-out;
	}
	
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-header .logo img {
        height: 40px;
	}
    
    .mobile-menu-header .close-menu {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
	}
	
    .mobile-menu-social {
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-social p {
        font-size: 16px;
        margin-bottom: 10px;
	}
    
    .mobile-menu-social ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        list-style-type: none;
	}
    
    .mobile-menu-social a {
        font-size: 18px;
        color: #333;
        text-decoration: none;
	}
    
    .mobile-menu-social a:hover {
        color: #e85b51;
	}
	
    .mobile-menu-scroll {
        flex-grow: 1;
        overflow-y: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-scroll ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 450px;
	}
    
    .mobile-menu-scroll ul.sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0 20px;
        height: auto;
	}
    
    .mobile-menu-scroll li {
        position: relative;
        margin-bottom: 10px;
	}
    
    .mobile-menu-scroll a {
        position: relative;
        color: #000;
        text-decoration: none;
        padding: 10px;
        display: block;
        border-radius: 4px;
	}
    
    .mobile-menu-scroll a::before {
        content: '';
        position: absolute;
        width: 90%;
        height: 1px;
        background-color: #ececec;
        right: 20px;
        bottom: -5px;
	}
    
    .mobile-menu-scroll > ul > li:last-child > a::before {
        content: none;
	}
	
    .mobile-menu-scroll a:hover {
        color: #e85b51;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a {
        position: relative;
        padding-right: 30px;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a::after {
        content: '\f107';
        font-family: FontAwesome;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        background-color: #333;
        color: #fff;
        padding: 4px 5px;
        border-radius: 50%;
	}
    
    .mobile-menu-scroll .menu-item-has-children.open > a::after {
        content: '\f106';
	}
	
    .mobile-menu-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        gap: 10px;
        width: 100%;
        height: auto;
        padding-bottom: 100px;
	}
    .mobile-menu-footer .topbar-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #cb1515;
        border: none;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        text-decoration: none;
        width: 70%;
	}
	
    .mobile-menu-footer .topbar-btn:hover {
        background: #891a1a;
        color: #fff;
	}
    
    .mobile-menu-footer .topbar-btn img {
        width: 30px;
        height: 30px;
        margin-right: 5px;
        border-radius: 5px;
	}
    
    .stock-table {
        min-width: 700px;
        margin: 30px 10px;
	}
    
    .store-social {
        flex-direction: column;
	}
    
    .footer-app-links {
        text-align: center;
	}
    
    .footer-social-media {
        margin-top: 30px;
        text-align: center;
	}
    
    .footer-category-contact {
        flex-direction: column;
	}
    
    .footer-contact-info {
        width: 100%;
        text-align: center;
	}
    
    .footer-categories {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
	}
    
    .copyright {
        flex-direction: column;
	}
	
	.login-register-page, .reset-password-page {
        flex-direction: column;
        align-items: center;
        overflow: unset;
	}
    
    .left-section, .right-section {
        width: 100%;
	}
    
    .right-section .form-container {
        max-width: 350px;
	}
}

@media (max-width: 768px) {
    .bolumbaslikonce, .bolumbasliksonra {
        display: none;
	}
    .baslikbolum {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
	}
    .genel-wrapper .dikey-reklam-sol, .genel-wrapper .dikey-reklam-sag {
        display: none;
	}
    .genel-wrapper .yatay-reklam {
        max-width: 375px;
	}
    .genel-wrapper .yatay-reklam img {
        height: 80px;
	}
    .main-menu {
        display: none;
	}
    .currency-slider {
        width: 100%;
	}
    .topbar-buttons {
        display: none;
	}
    .kayanhaberler .haberikon {
        width: 90px;
        padding: 0;
	}
    .kayanhaberler .haberikon .habertitle {
        padding: 0 0 0 20px;
	}
    .kayanhaberler .habermarquee {
        padding: 10px 10px 10px 0;
	}
    .kayanhaberler .habermarqueebolumsonra {
        height: 30px;
        border: 5px solid #cb1515;
	}
    .search-login {
        display: none;
	}
    .news-container {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
	}
    .gundem-slider {
        width: 100%;
	}
    .gundem-slider .overlay {
        bottom: 27px;
	}
    .gundem-slider .slick-dots {
        padding: 3px 0;
	}
    .gundem-slider .slick-dots li {
        width: 5px;
        margin: 3px 5px;
	}
    .gundem-slider .slick-dots li button {
        background-color: #8a8a8a;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-dots li.slick-active button {
        background-color: #fff;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        padding: 0;
        margin: 0;
        font-size: 0;
	}
    .gundem-slider .slick-prev, .gundem-slider .slick-next {
        bottom: 5px;
	}
    .sicak-slider {
        width: 100%;
        margin: 30px auto 0 auto;
        background: unset;
        box-shadow: unset;
	}
    .sicak-slider .hot-slider {
        background: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .gazeteler-slider {
        margin: 30px auto 0 auto;
        padding: 10px;
        background-color: unset;
        box-shadow: unset;
	}
    .gazeteler-slider .gazete-slider {
        height: 400px;
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
        box-sizing: border-box;
	}
    .gazeteler-slider .gazete-slider .gazete-item {
        height: 375px;
	}
    .ikigenisikidarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikigenisikidarhaber-bolum {
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum.genis:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-bolum.genis {
        width: 100%;
        margin: 0 auto;
	}
    .ikigenisikidarhaber-bolum.dar {
        width: 100%;
        margin: 30px auto 0 auto;
	}
    .ikigenisikidarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisikidarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisikidarhaber-bolum-parca {
        border: unset;
        box-shadow: unset;
	}
    .ikigenisikidarhaber-bolum-parca.alt {
        margin-top: 30px;
	}
    .ikigenisikidarhaber-bolum-parca .namaz-bilgi {
        padding: 10px 60px;
	}
    .ikilihaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikilihaber-bolum {
        width: 100%;
        margin: 0 auto;
        border: unset;
        box-shadow: unset;
	}
    .ikilihaber-bolum:first-child {
        margin: 0 auto;
	}
    .ikilihaber-bolum:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ikilihaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        position: relative;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ucluhaber-section {
        margin: 30px auto 0 auto;
        padding: 10px;
	}
    .ucluhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ucluhaber-bolum {
        width: 100%;
        margin: 0 auto;
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ucluhaber-bolum:first-child {
        margin: 0 auto;
	}    
    .ucluhaber-bolum:not(:first-child) {
        margin: 30px auto 0 auto;
	}
    .ucluhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-section {
        margin: 30px auto 0 auto;
	}
    .ikigenisbirdarhaber-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikigenisbirdarhaber-bolum {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
        border: unset;
        box-shadow: unset;
	}
    .ikigenisbirdarhaber-bolum .kucukhaber-resim {
        margin-right: 5px;
	}
    .ikigenisbirdarhaber-bolum.dar {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
	}
    .ikigenisbirdarhaber-bolum:first-child {
        margin: 0 auto;
	}    
    .ikigenisbirdarhaber-bolum:last-child {
        margin: 30px auto 0 auto;
	}
    .ikigenisbirdarhaber-bolum .haberblok {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikigenisbirdarhaber-bolum.dar .puandurumutam {
        background-color: #fff;
        border: 1px solid #ececec;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section {
        margin: 30px auto 0 auto;
	}
    .ikihaberbirslider-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
	}
    .ikihaberbirslider-bolum {
        width: 100%;
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
	}
    .ikihaberbirslider-bolum:first-child, .ikihaberbirslider-bolum:last-child {
        margin: 0 auto;
	}
    .ikihaberbirslider-section .haberler, .ikihaberbirslider-section .numaralar, .ikihaberbirslider-section .yazarlar-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .ikihaberbirslider-section .haber-resim {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .numara-item span {
        margin-right: 5px;
	}
    .ikihaberbirslider-section .yazar-avatar {
        margin-right: 5px;
	}
    .fotogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .fotogaleri-slider .foto-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    .videogaleri-slider {
        margin: 30px auto 0 auto;
        background-color: unset;
        box-shadow: unset;
        padding: 10px;
	}
    .videogaleri-slider .video-slider {
        background-color: #fff;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	}
    footer.footer {
        margin-top: 30px;
	}
    .footer-top {
        flex-direction: column;
        flex-wrap: wrap;
	}
    .categories-section {
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px;
        gap: 10px 75px;
	}
    .footer-bottom {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 10px;
	}
    .yukari-cik {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #cb1515;
        bottom: 20px;
        right: 20px;
	}
    .yukari-cik:hover, .yukari-cik:focus {
        border-bottom: 40px solid #891a1a;
	}
    .yukari-cik i {
        transform: translate(-50%, 90%);
	}
    .breadcrumb {
        display: block;
	}
    .breadcrumb span {
        padding: 0 10px;
	}
    .single-container {
        flex-wrap: wrap;
        flex-direction: column;
	}
    .sidebar {
        width: 100%;
        padding: 0;
	}
    .single-content {
        width: calc(100% - 40px);
        margin: 20px auto;
	}
    .page-content {
        width: calc(100% - 40px);
	}
    .post-dates {
        flex-wrap: wrap;
	}
    .post-content iframe {
        max-width: 100%;
	}
    .related-item {
        width: 48%;
	}
    .kategori-icerik {
        flex-wrap: wrap;
        flex-direction: column;
	}
    .ana-icerik {
        width: calc(100% - 20px);
        margin: 20px auto;
        padding: 0;
	}
    .icerik-sagbolum {
        width: calc(100% - 30px);
	}
    .ana-icerik span {
        text-align: center;
	}
    .ana-icerik .haber-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
	}
	
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
	}
    
    .menu-toggle, .login-btn {
        background: none;
        border: 2px solid #cb1515;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 20px;
        color: #cb1515;
	}
    
    .menu-toggle:hover, .login-btn:hover {
        color: #e85b51;
	}
	
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 999998;
	}
	
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 275px;
        background-color: #f8f9fa;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease-in-out;
	}
	
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-header .logo img {
        height: 40px;
	}
    
    .mobile-menu-header .close-menu {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
	}
	
    .mobile-menu-social {
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-social p {
        font-size: 16px;
        margin-bottom: 10px;
	}
    
    .mobile-menu-social ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        list-style-type: none;
	}
    
    .mobile-menu-social a {
        font-size: 18px;
        color: #333;
        text-decoration: none;
	}
    
    .mobile-menu-social a:hover {
        color: #e85b51;
	}
	
    .mobile-menu-scroll {
        flex-grow: 1;
        overflow-y: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid #ececec;
	}
    
    .mobile-menu-scroll ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 450px;
	}
    
    .mobile-menu-scroll ul.sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0 20px;
        height: auto;
	}
    
    .mobile-menu-scroll li {
        position: relative;
        margin-bottom: 10px;
	}
    
    .mobile-menu-scroll a {
        position: relative;
        color: #000;
        text-decoration: none;
        padding: 10px;
        display: block;
        border-radius: 4px;
	}
    
    .mobile-menu-scroll a::before {
        content: '';
        position: absolute;
        width: 90%;
        height: 1px;
        background-color: #ececec;
        right: 20px;
        bottom: -5px;
	}
    
    .mobile-menu-scroll > ul > li:last-child > a::before {
        content: none;
	}
	
    .mobile-menu-scroll a:hover {
        color: #e85b51;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a {
        position: relative;
        padding-right: 30px;
	}
    
    .mobile-menu-scroll .menu-item-has-children > a::after {
        content: '\f107';
        font-family: FontAwesome;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        background-color: #333;
        color: #fff;
        padding: 4px 5px;
        border-radius: 50%;
	}
    
    .mobile-menu-scroll .menu-item-has-children.open > a::after {
        content: '\f106';
	}
	
    .mobile-menu-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        gap: 10px;
        width: 100%;
        height: auto;
        padding-bottom: 100px;
	}
    .mobile-menu-footer .topbar-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #cb1515;
        border: none;
        border-radius: 5px;
        padding: 5px 10px;
        cursor: pointer;
        text-decoration: none;
        width: 70%;
	}
	
    .mobile-menu-footer .topbar-btn:hover {
        background: #891a1a;
        color: #fff;
	}
    
    .mobile-menu-footer .topbar-btn img {
        width: 30px;
        height: 30px;
        margin-right: 5px;
        border-radius: 5px;
	}
    
    .puan-durumlari-tablo {
        max-width: 380px;
        overflow-x: scroll;
	}
	
    .stock-table {
        min-width: 340px;
        margin: 30px 10px;
	}
    
    .stock-table tr th:last-child, .stock-table tr td:last-child {
        display: none;
	}
    .hava-durumu-container {
        margin: 0 20px;
	}
    
    .hava-durumu-baslik {
        flex-direction: column;
	}
    
    .bugun-hava-durumu {
        flex-direction: column;
        align-items: center;
        gap: 5px;
	}
    
    .bugun-hava-durumu .sol-kisim {
        width: 100%;
        flex-direction: column;
	}
    
    .bugun-hava-durumu .sol-kisimsol {
        width: 100%;
        flex-direction: row;
        text-align: center;
        justify-content: center;
	}
    
    .bugun-hava-durumu .sol-kisimsag {
        width: 100%;
        text-align: center;
	}
    
    .bugun-hava-durumu .sag-kisim {
        width: 100%;
        text-align: center;
        border: none;
        padding: 0 20px;
	}
    
    .haftalik-hava-durumu {
        grid-template-columns: repeat(1, 1fr);
	}
    
    .nobetci-eczaneler form {
        flex-direction: column;
        align-items: center;
	}
    
    .namaz-vakitleri-tablosu-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
	}
    
    .namaz-vakitleri .namaz-vakitleri-tablosu {
        max-width: 380px;
	}
    
    .yazarlar-grid {
        grid-template-columns: repeat(1, 1fr);
	}
    
    .footer-category {
        width: 50%;
        text-align: center;
	}
    
    .login-register-page, .reset-password-page {
        flex-direction: column;
        align-items: center;
	}
    
    .left-section, .right-section {
        width: 100%;
	}
    
    .right-section .form-container {
        max-width: 350px;
	}
}
