#hero-banner .breadcrumb-container {
    position: relative;
    top: -20px;
    display: inline-block;
    color: #fff;
    padding-left: 0;
    margin-right: 1300px;
}

#hero-banner .breadcrumb-wrapper {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

#hero-banner .breadcrumb-item {
    display: inline-block;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 13.5px;
    text-align: left;
    padding-bottom: 10px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

#hero-banner .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

#hero-banner .breadcrumb-separator {
    display: inline-block;
    margin: 0 20px;
}

#hero-banner .breadcrumb-icon {
    width: 4.5px;
    height: 9px;
    opacity: 1;
    margin: 0;
    margin-bottom: 10px;
}

#hero-banner .breadcrumb-line {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #3e506b;
}

@media (min-width: 1024px) {
    #hero-banner .breadcrumb-container {
        margin-right: 1074px;
    }
}

@media (max-width: 768px) {
    #hero-banner .breadcrumb-container {
        margin-right: 0;
        margin-top: 50px;
        margin-left: -150px;
    }
    #hero-banner .breadcrumb-wrapper {
        flex-wrap: wrap;
    }
}
.writers-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Başlıkları kartların başladığı hizaya getirir */
    margin: 40px 0;
    gap: 10px;
}

.section-title {
    font-weight: 700;
    margin-left: 230px;
    font-size: 35px;
    line-height: 50px;
}

.section-subtitle {
    margin-left: 230px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.section-title,
.section-subtitle {
    width: 100%;
}

.writers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .writers-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .writers-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.writer-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.writer-photo img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.writer-details {
    padding: 15px;
    height: 100%;
}

.writer-name {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.writer-info {
    font-size: 0.9em;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* En fazla 2 satır göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5; /* Satır yüksekliği */
    max-height: 3em; /* 2 satır için toplam yükseklik */
}

.writer-links {
    margin-top: auto; /* Pushes the links to the bottom */
    padding-bottom: 10px; /* Adds spacing from the bottom */
}

.writer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
}

.writer-links a:hover {
    text-decoration: underline;
}
@media (min-width: 1920px) {
    .section-title,
    .section-subtitle {
        margin-left: 460px;
    }
}
@media (max-width:768px) {
    .section-title,
    .section-subtitle {
        margin-left: 20px;
    }
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center !important;
    align-items: center !important;
}

.modal-content {
    display: inline;
    background-color: #fff;
    border: 1.35px;
    max-width: 700px;
    width: 90%;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-description {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: justify; 
    max-width: 600px; 
}
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.modal-photo {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 85%;
        width: auto;
        padding: 15px; 
        margin: 0 10px; 
        border-radius: 10px;
    }

    .modal-description {
        font-size: 14px; 
        line-height: 1.5; 
        max-width: 100%; 
        text-align: left; 
    }

    .modal-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 1.2rem; 
        margin-bottom: 8px;
    }

    .close {
        top: 10px; 
        right: 10px;
        font-size: 20px; 
    }
}
