.blog-card {
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    background-color: #fff;
    padding: 1.1rem;
    border-radius: .8rem;
}

.blog-page-area .input-container {
    display: flex;
}

.blog-page-area ::placeholder {
    color: var(--gray);
    opacity: 1;
}

.blog-page-area .search-input {
    background: #ffffff;
    color: #212121;
    vertical-align: middle;
    line-height: 2;
    padding: 10px 20px;
    border: 0;
    outline: none;
    box-shadow: inset 0 -1px 1px -1px #CCCCCC, inset 0 1px 1px -1px #CCCCCC, inset 1px 0 1px -1px #CCCCCC;
}

.blog-page-area .search-submit {
    background: var(--main);
    color: #FFFFFF;
    vertical-align: middle;
    padding: 0 20px;
    border: 0;
    outline: none;
    cursor: pointer;
    transition: all .2s linear;
}

.blog-page-area .search-submit:hover {
    background: var(--red);
}

.blog-page-area .search-submit i {
    font-size: 1.2rem;
}

.blog-page-area .dropdown-menu {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: 0 0 10px 2px #2121211a;
    margin-top: .5rem !important;
}

.blog-page-area .btn-light {
    border-radius: 0 !important;
}

.blog-page-area .btn-light:hover,
.blog-page-area .btn-light:focus {
    background-color: var(--main);
    color: #fff;
}

.blog-page-area .dropdown-item:hover {
    background-color: var(--main);
    color: #fff;
}

.page-link {
    color: var(--main) !important;
}

.active>.page-link,
.page-link.active {
    background-color: var(--main) !important;
    color: #fff !important;
    border: 1px solid var(--main) !important;
}

.news-detail-page .title-navtabs {
    margin-top: .8rem;
}

.news-detail-page .title-navtabs .border-title {
    border-left: .6rem solid var(--red);
    padding-left: 1rem;
}

.news-detail-page .title-navtabs .border-title h2 {
    color: var(--main);
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-detail-page .title-navtabs .border-title p {
    color: var(--main);
    font-weight: 300;
    padding-top: .5rem;
    margin-bottom: 0;
}

.news-detail-page article {
    background-color: #fff;
    padding: 0;
}

.news-detail-page .descrip p {
    color: var(--darkGray);
    font-weight: 300;
    margin-top: 1.2rem;
    padding: 0 1.5rem;
    font-size: .9rem;
}

.news-detail-page .cover-img {
    width: 100%;
    object-fit: cover;
    height: 25rem;
}

/* Sidebar Container */
.news-sidebar {
    background: #fff;
    border: 1px solid #ffffff;
    padding: 20px;
    border-radius: 0px !important;
}

/* Sidebar Başlık */
.news-sidebar h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: .1rem solid #2121210c;
    padding-bottom: .5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--main);
}

/* Haber Listesi */
.news-list .news-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.news-list .news-item:last-child {
    border-bottom: none;
}

.news-list .news-item:hover {
    background-color: #f8f8f8;
}

/* Haber Küçük Resmi */
.news-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

/* Haber Bilgileri */
.news-info {
    flex: 1;
}

/* Haber Başlığı */
.news-title {
    font-size: 16px;
    margin: 0;
    color: #222;
}

/* Haber Meta Bilgileri (Tarih & Kategori) */
.news-meta {
    font-size: 12px;
    color: #888;
}

aside {
    padding: 0 !important;
    padding-right: .4rem !important;
}