

.dt-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 16px;
}
.dt-filters {
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.dt-filter-btn {
    background: #f7f7f7;
    border: 1px solid #e1e1e1;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: all .4s ease-in-out;
}
.dt-filter-btn.active {
    background: #00b4b0;
    color: #fff;
    border-color: #00b4b0;
}
.dt-filter-btn:hover:not(.active) {
    background: #eef7fc;
    border-color: #00b4b0;
    color: #00b4b0;
}

.dt-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px;
}
.dt-card {
    width: 100%;
    max-width: 250px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08), 0 8px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: transform .7s cubic-bezier(.25,.8,.25,1), box-shadow .7s cubic-bezier(.25,.8,.25,1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
    margin: 10px;
}
.dt-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dt-card-link-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.dt-thumb {
    width: 100%;
    position: relative;
    padding-top: 100%;
}
.dt-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
    border-bottom: 1px solid #f0f0f0;
}
.dt-no-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    color: #999;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}
.dt-card:hover .dt-thumb img {
    transform: scale(1.05);
}

.dt-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}
.dt-name {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}
.dt-branch-name {
    font-size: 16px;
    font-weight: 500;
    color: #00b4b0;
    margin-bottom: 12px;
}
.dt-excerpt {
    margin: 0 0 16px 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.dt-card-footer {
    padding: 10 0px 0px;
    margin-top: auto;
}
.dt-read-more {
    display: block;
    text-align: center;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    background-color: #00b4b0;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background-color .2s ease;
    border: 1px solid #00b4b0;
}
.dt-read-more:hover {
    background-color: #005a87;
    color: #fff;
    text-decoration: none;
}

/* Tekil Sayfa Düzenlemeleri */
.dt-single-wrap {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 16px;
}
.dt-single {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.dt-single-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.dt-single-thumb img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dt-single-info h1 {
    font-size: 32px;
    margin-top: 0;
}
.dt-contact-info {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.dt-contact-info li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #000;
}
.dt-contact-info .dashicons {
    color: #000;
    font-size: 20px;
}

.dt-accordion-section {
    margin-top: 30px;
}
.dt-accordion-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.dt-acc-item {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.dt-acc-btn {
    background-color: #eee;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.2s ease;
}
.dt-acc-btn:hover, .dt-acc-btn.active {
    background-color: #e1e1e1;
}
.dt-acc-btn:after {
    content: '+';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.dt-acc-btn.active:after {
    content: "−";
}

.dt-acc-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 15px;
}
.dt-acc-panel.open {
    max-height: 500px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #000;
}

/* Shortcode alanları için stil */
.dt-top-shortcode {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 16px;
}
.dt-bottom-shortcode {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 16px;
}
/* Mobil uyumluluk için medya sorguları */
@media (max-width: 900px) {
    .dt-card {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .dt-card {
        max-width: 100%;
        margin: 10px auto;
    }
    .dt-single-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .dt-single-thumb img {
        width: 300px;
        height: 300px;
    }
    .dt-single-info h1 {
        font-size: 28px;
    }
    .dt-contact-info {
        margin-top: 10px;
    }
    .dt-contact-info li {
        justify-content: center;
    }
    .dt-filters {
        flex-direction: column;
        gap: 8px;
    }
    .dt-filter-btn {
        width: 100%;
        box-sizing: border-box;
    }
}