.ekip-index-page {
    padding: 70px 0;
}

.ekip-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(2, 3, 52, 0.06);
    box-shadow: 0 10px 25px rgba(2, 3, 52, 0.04);
    height: 100%;
    transition: all 0.3s ease;
}

.ekip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(2, 3, 52, 0.1);
    border-color: #0088cb;
}

.ekip-card .team-info .name a {
    color: #030c26;
    text-decoration: none;
}

.ekip-card .team-info .name a:hover {
    color: #0088cb;
}

.ekip-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-top: 8px;
    margin-bottom: 0;
}

.ekip-profile-card {
    background: #ffffff;
    border: 1px solid rgba(2, 3, 52, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(2, 3, 52, 0.06);
    transition: all 0.3s ease;
}

.ekip-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(2, 3, 52, 0.1);
}

.ekip-profile-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.ekip-profile-card:hover .ekip-profile-image img {
    transform: scale(1.03);
}

.ekip-profile-body {
    padding: 24px;
}

.ekip-profile-name {
    font-size: 26px;
    margin-bottom: 8px;
    color: #030c26;
}

.ekip-profile-role {
    color: #0088cb;
    font-weight: 600;
    margin-bottom: 18px;
}

.ekip-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ekip-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.ekip-contact-list li i {
    color: #0088cb;
    width: 16px;
    text-align: center;
}

.ekip-contact-list a {
    color: #374151;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.ekip-contact-list a:hover {
    color: #0088cb;
}

.ekip-profile-social {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ekip-profile-social li a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 136, 203, 0.08);
    color: #0088cb;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 136, 203, 0.12);
}

.ekip-profile-social li a:hover {
    background: #0088cb;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 136, 203, 0.3);
}

.ekip-lead {
    margin-bottom: 24px;
}

.ekip-news-section {
    border-top: 1px solid rgba(2, 3, 52, 0.08);
}

/* Compact News Item Styles */
.ekip-news-item {
    display: flex;
    background: #ffffff;
    border: 1px solid rgba(2, 3, 52, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 3, 52, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.ekip-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(2, 3, 52, 0.09);
    border-color: #0088cb;
}

.ekip-news-image {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
    position: relative;
    overflow: hidden;
}

.ekip-news-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.ekip-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ekip-news-item:hover .ekip-news-image img {
    transform: scale(1.08);
}

.ekip-news-body {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.ekip-news-category {
    font-size: 11px;
    font-weight: 700;
    color: #0088cb;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 6px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.ekip-news-category:hover {
    color: #030c26;
}

.ekip-news-title {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ekip-news-title a {
    color: #030c26;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ekip-news-title a:hover {
    color: #0088cb;
}

.ekip-news-date {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ekip-news-date svg {
    width: 13px;
    height: 13px;
    color: #777;
}

.ekip-news-excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ekip-pagination {
    margin-top: 8px;
    padding-top: 8px;
}

.ekip-pagination .pagination {
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
}

.ekip-pagination .page-link {
    border-radius: 6px;
    color: #030c26;
    border-color: #e2e6ed;
    min-width: 38px;
    text-align: center;
}

.ekip-pagination .page-item.active .page-link {
    background: #0088cb;
    border-color: #0088cb;
}

.ekip-pagination .page-link:hover {
    background: #f0f9ff;
    border-color: #0088cb;
    color: #0088cb;
}

/* Biography & Section Titles */
.ekip-section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 22px;
    color: #030c26;
    font-weight: 700;
}

.ekip-section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0088cb;
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

[dir="rtl"] .ekip-section-title:after {
    left: auto;
    right: 0;
}

/* Dark mode support */
html.back-dark body .ekip-profile-card {
    background: #1e2640;
    border-color: rgba(255, 255, 255, 0.08);
}

html.back-dark body .ekip-profile-name {
    color: #ffffff;
}

html.back-dark body .ekip-contact-list a {
    color: #d1d5db;
}

html.back-dark body .ekip-news-item {
    background: #1e2640;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

html.back-dark body .ekip-news-item:hover {
    border-color: #0088cb;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

html.back-dark body .ekip-news-title a {
    color: #ffffff;
}

html.back-dark body .ekip-news-title a:hover {
    color: #0088cb;
}

html.back-dark body .ekip-news-date {
    color: #a0aec0;
}

html.back-dark body .ekip-news-date svg {
    color: #a0aec0;
}

html.back-dark body .ekip-section-title {
    color: #ffffff;
}

html.back-dark body .ekip-news-category:hover {
    color: #ffffff;
}
