/*
Theme Name: Derinsayfa Theme
Theme URI: https://derinsayfa.com
Description: Derinsayfa özel teması
Author: Derinsayfa
Template: twentytwentyfive
Version: 1.0
*/
/* === DERINSAYFA GRID TASARIM === */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #111 !important;
    color: #f0ece4 !important;
    font-family: 'Inter', sans-serif !important;
}

#ds-main {
    max-width: 100%;
    padding: 8px;
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.ds-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.ds-card:hover .ds-actions {
    opacity: 1;
    transform: translateY(0);
}

.ds-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,.1) 100%);
}

.ds-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 10px;
    color: #c9a96e;
    font-weight: 600;
    letter-spacing: .5px;
    z-index: 2;
}

.ds-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 10px;
    z-index: 2;
}

.ds-quote {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}

.ds-actions {
    display: flex;
    gap: 5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .25s ease;
}

.ds-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: .15s;
}

.ds-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
    color: #fff;
}

.ds-wa { background: #25d366; }
.ds-tw { background: #1da1f2; }

.ds-ad-card {
    aspect-ratio: 1;
    background: #141414;
    border: 1px dashed #252525;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-ad-placeholder {
    font-size: 11px;
    color: #333;
}

/* Header gizle */
.wp-block-template-part[data-slug="header"],
header.wp-block-template-part {
    display: none;
}