/* Detay — blogyorumlar listesi + form */

.detail-yorumlar {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(21, 32, 51, 0.1);
}

.detail-yorumlar__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.detail-yorumlar__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.2rem;
    font-weight: 750;
    color: #152033;
}

.detail-yorumlar__title i {
    color: #cc0000;
}

.detail-yorumlar__count {
    margin: 0;
    font-size: 0.85rem;
    color: #5b677a;
    font-weight: 600;
}

.detail-yorum-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
}

.detail-yorum-alert.is-ok {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.detail-yorum-alert.is-error {
    background: rgba(204, 0, 0, 0.08);
    color: #9f0000;
    border: 1px solid rgba(204, 0, 0, 0.2);
}

.detail-yorum-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.detail-yorum-card {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #f4f6f8;
    border: 1px solid rgba(21, 32, 51, 0.08);
}

.detail-yorum-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.45rem;
}

.detail-yorum-card__name {
    font-weight: 750;
    color: #152033;
    font-size: 0.95rem;
}

.detail-yorum-card__meta time {
    font-size: 0.8rem;
    color: #5b677a;
}

.detail-yorum-card__text {
    margin: 0;
    color: #2a3444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-yorum-empty {
    margin: 0;
    padding: 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px dashed rgba(21, 32, 51, 0.15);
    color: #5b677a;
    font-size: 0.92rem;
}

.detail-yorum-form-wrap {
    position: relative;
    padding: 1.15rem 1.2rem 1.25rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(204, 0, 0, 0.14);
    box-shadow: 0 8px 24px rgba(21, 32, 51, 0.05);
}

.detail-yorum-form__title {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 750;
    color: #152033;
}

.detail-yorum-form__hint {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: #5b677a;
}

.detail-yorum-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-yorum-field {
    margin-bottom: 0.75rem;
}

.detail-yorum-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #152033;
}

.detail-yorum-field input,
.detail-yorum-field textarea {
    width: 100%;
    border: 1px solid rgba(21, 32, 51, 0.14);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
    color: #152033;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-yorum-field input:focus,
.detail-yorum-field textarea:focus {
    outline: none;
    border-color: rgba(204, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.12);
}

.detail-yorum-field textarea {
    resize: vertical;
    min-height: 110px;
}

.detail-yorum-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.detail-yorum-form.is-invalid .detail-yorum-field input:invalid,
.detail-yorum-form.is-invalid .detail-yorum-field textarea:invalid {
    border-color: #cc0000;
}

@media (max-width: 767.98px) {
    .detail-yorum-form__grid {
        grid-template-columns: 1fr;
    }

    .detail-yorum-form-wrap {
        padding: 1rem;
    }
}
