/**
 * Yazı sonundaki yazar kutusu.
 *
 * Elementor'un hazır author-box widget'ı kullanılmaya devam ediyor; burada
 * yalnızca görünümü düzeltiliyor. Elementor'un kendi kuralları
 * ".elementor-widget-author-box .elementor-author-box__name" biçiminde
 * (2 sınıf); aşağıdakiler body sınıfıyla 3 sınıfa çıkıp onları geçiyor.
 */

.single-post .elementor-widget-author-box .elementor-author-box {
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid #e3e6ec;
    border-radius: 14px;
    background: #fff;
}

/**
 * Avatar aslında Brandaft logosu. object-fit:cover ile dairenin içine
 * kırpılıyor ve logonun kenarı kesiliyordu; contain + iç boşluk ile
 * tamamı görünüyor.
 */
.single-post .elementor-widget-author-box .elementor-author-box__avatar {
    flex: none;
}

.single-post .elementor-widget-author-box .elementor-author-box__avatar img {
    width: 72px;
    height: 72px;
    padding: 9px;
    object-fit: contain;
    background: #f6f8fb;
    border: 1px solid #eef0f4;
    border-radius: 500px;
}

.single-post .elementor-widget-author-box .elementor-author-box__text {
    min-width: 0;
}

.single-post .elementor-widget-author-box .elementor-author-box__name {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--e-global-color-a6885d0, #4877bd);
}

.single-post .elementor-widget-author-box .elementor-author-box__bio {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6472;
}

.single-post .elementor-widget-author-box .elementor-author-box__bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .single-post .elementor-widget-author-box .elementor-author-box {
        gap: 14px;
        padding: 18px;
    }

    .single-post .elementor-widget-author-box .elementor-author-box__avatar img {
        width: 60px;
        height: 60px;
        padding: 7px;
    }

    .single-post .elementor-widget-author-box .elementor-author-box__name {
        font-size: 16px;
    }

    .single-post .elementor-widget-author-box .elementor-author-box__bio {
        font-size: 14.5px;
    }
}
