﻿/*********
 BANNERS
********/
.about-us-banner:hover {
    transform: translateY(-5px);
}
.about-us-banner {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.about-us-banner .card-body{
    padding: 3rem !important;
}
.about-us-banner .card-body .title{
        color: var(--color-primary);
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 30px;
    font-family:var(--font-inter-sbold);
}
.px_hakkimizda_2025-img-container {
    position: relative;
    overflow: hidden;
}
/***********************************/

.section-header .section-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}
/***********************************/

/*********
BLOG CARD
*********/
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-image {
    position: relative;
    height: 250px;
}
.blog-image {
    position: relative;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-secondary);
    color: white;
    text-align: center;
    padding: 8px 15px;
    border-radius: 8px;
    z-index: 1;
}
.blog-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #666;
    font-size: 14px;
}
.blog-meta i {
    color: var(--color-secondary);
    margin-right: 5px;
}
.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    /* font-size: 14px; */
}
.blog-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
/***********************************/

/*********
SİDEBAR WİDGET
*********/
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 24px 25px 0 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-widget h3{
        color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    position:relative;
}
.sidebar-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--color-secondary);
}
.sidebar-widget .post-item {
 display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.sidebar-widget .post-item:last-child{
    border:0;
}
.sidebar-widget .post-thumb {
    flex: 0 0 100px;
}
.sidebar-widget .post-thumb img {
    width: 100%;
    border-radius: 10px;
}
.sidebar-widget .post-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
        font-family: var(--font-inter-sbold);
}
.sidebar-widget .post-meta i {
    color: var(--color-secondary);
    margin-right: 5px;
}