/* Teşkilat Detay Sayfası Stilleri */

.teskilat-detay-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teskilat-detay-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.teskilat-detay-logo {
    padding: 25px 20px;
    text-align: center;
    background-color: #1f2950;
}

.teskilat-detay-logo img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

.teskilat-detay-header {
    background-color: #c00e0e;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.teskilat-detay-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.teskilat-detay-body {
    padding: 25px 20px;
}

.teskilat-info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.teskilat-info-item:last-child {
    margin-bottom: 0;
}

.teskilat-info-item i {
    color: #c00e0e;
    margin-right: 10px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.teskilat-info-item span {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.teskilat-info-item a {
    color: #c00e0e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.teskilat-info-item a:hover {
    color: #a00c0c;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .teskilat-detay-logo img {
        max-width: 80px;
    }
}

