.elementor-46 .elementor-element.elementor-element-ca970ef{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-46 .elementor-element.elementor-element-4021dce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-46 .elementor-element.elementor-element-4021dce.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-46 .elementor-element.elementor-element-13d91ef .elementor-heading-title{font-family:"Poppins", Sans-serif;font-weight:600;color:#000000;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-46 .elementor-element.elementor-element-042cd29{text-align:left;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-46 .elementor-element.elementor-element-3e8a5c2{color:#000000;}.elementor-46 .elementor-element.elementor-element-ef1354c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-46 .elementor-element.elementor-element-4021dce{--width:73.258%;}.elementor-46 .elementor-element.elementor-element-ef1354c{--width:50%;}}/* Start custom CSS *//********************************************************
 * UTSYD – Single Post Elementor Custom CSS
 * Hedefler:
 * - Post Title
 * - Featured Image
 * - Post Content
 * - Post Comments
 ********************************************************/

/* =====================
   POST TITLE (YAZI BAŞLIĞI)
   ===================== */

.elementor-widget-theme-post-title .elementor-heading-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 18px;
}

/* Küçük ekranlarda başlık boyutunu küçült */
@media (max-width: 600px) {
    .elementor-widget-theme-post-title .elementor-heading-title {
        font-size: 26px;
    }
}

/* Başlığın altına ince renkli çizgi */
.elementor-widget-theme-post-title .elementor-heading-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
}

/* =====================
   FEATURED IMAGE (ÖNE ÇIKAN GÖRSEL)
   ===================== */

.elementor-widget-theme-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 26px;
}

/* Hover'da hafif zoom efekti */
.elementor-widget-theme-post-featured-image img {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.elementor-widget-theme-post-featured-image img:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.18);
}

/* =====================
   POST CONTENT (İÇERİK)
   ===================== */

.elementor-widget-theme-post-content {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
}

/* Paragraflar */
.elementor-widget-theme-post-content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px;
    color: #374151;
}

/* Başlıklar içerik içinde (H2/H3 vs.) */
.elementor-widget-theme-post-content h2,
.elementor-widget-theme-post-content h3,
.elementor-widget-theme-post-content h4 {
    font-weight: 600;
    color: #0f172a;
    margin-top: 28px;
    margin-bottom: 10px;
}

/* H2 için alt çizgi */
.elementor-widget-theme-post-content h2 {
    font-size: 22px;
    position: relative;
    padding-bottom: 6px;
}

.elementor-widget-theme-post-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #2563eb;
    border-radius: 999px;
}

/* Listeler */
.elementor-widget-theme-post-content ul,
.elementor-widget-theme-post-content ol {
    margin: 12px 0 20px 20px;
    padding-left: 10px;
}

.elementor-widget-theme-post-content li {
    margin-bottom: 8px;
}

/* Linkler */
.elementor-widget-theme-post-content a {
    color: #1d4ed8;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.elementor-widget-theme-post-content a:hover {
    color: #0b2f8a;
    border-color: rgba(11, 47, 138, 0.8);
}

/* Blockquote / Alıntı */
.elementor-widget-theme-post-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid #1e3a8a;
    background: #f3f4ff;
    border-radius: 10px;
    font-style: italic;
    color: #111827;
}

/* =====================
   POST COMMENTS (YORUMLAR)
   ===================== */

/* Ana yorum alanı container (tema + eklentilere göre değişebilir) */
.elementor-widget-theme-post-comments,
.comment-respond,
#comments {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin-top: 40px;
}

/* Yorum başlığı */
.elementor-widget-theme-post-comments h3,
#comments h3,
#reply-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
    position: relative;
    padding-bottom: 6px;
}

.elementor-widget-theme-post-comments h3::after,
#comments h3::after,
#reply-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 999px;
}

/* Yorum listesi */
.comment-list,
.comments-area ol.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list > li {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Yorum içi metin */
.comment-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

/* Yorum yazar adı / meta */
.comment-author,
.comment-meta {
    font-size: 13px;
    color: #6b7280;
}

/* Yorum formu input/textarea */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.comment-respond input[type="text"]:focus,
.comment-respond input[type="email"]:focus,
.comment-respond input[type="url"]:focus,
.comment-respond textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* Yorum gönder butonu */
.comment-respond input[type="submit"],
#submit {
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.comment-respond input[type="submit"]:hover,
#submit:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.35);
}/* End custom CSS */