/* ===== GRID ===== */
.hukuki-grid-shortcode {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* ===== CARD ===== */
.hukuki-card-shortcode {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    border: 1px solid #e5dfd6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.hukuki-card-shortcode::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #b99b71;
    transition: 0.3s ease;
}

.hukuki-card-shortcode:hover::after {
    width: 100%;
}

.hukuki-card-shortcode:hover {
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: #d8c4a0;
}
.hukuki-card-shortcode:hover .hukuki-read-more {
    border-bottom: 1px solid #b89b72;
}
/* SECTION BACKGROUND */
.hukuki-archive-section {
    background: #f7f5f1;
    padding: 100px 0;
}

/* ===== IMAGE ===== */
.hukuki-card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* ===== CONTENT ===== */
.hukuki-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.hukuki-card-content h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* AUTHOR + READ MORE SAME COLOR */
.hukuki-author {
    color: #b99b71 !important;
}

.hukuki-read-more {
    color: #b99b71 !important;
}
.hukuki-author,
.hukuki-read-more {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    font-weight: 600;
    color: #b99b71;
    border-bottom: 1px solid transparent;
}

/* AUTHOR spacing */
.hukuki-author {
    margin-bottom: 15px;
}

/* EXCERPT */
.hukuki-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* READ MORE en alta sabit */
.hukuki-read-more {
    margin-top: auto;
}

/* ===== PDF ICON ===== */
.hukuki-pdf-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b89b72;
    color: white;
    padding: 6px 8px;
    border-radius: 50%;
    font-size: 13px;
}

/* ===== PAGINATION ===== */
.hukuki-pagination {
    margin-top: 70px;
    text-align: center;
}

.hukuki-pagination a,
.hukuki-pagination span {
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.hukuki-pagination .current {
    background: #b89b72;
    color: white;
    border-color: #b89b72;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hukuki-grid-shortcode {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .hukuki-grid-shortcode {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hukuki-card-image img {
        height: 200px;
    }
}
/* SINGLE HUKUKİ YAYIN */

.hukuki-single-section {
    background: #f7f5f1;
    padding: 100px 0;
}

.hukuki-single-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.hukuki-meta {
    color: #b99b71;
    margin-bottom: 40px;
    font-weight: 500;
}

.hukuki-featured-image {
    margin-bottom: 40px;
}

.hukuki-featured-image img {
    width: 100%;
    border-radius: 12px;
}

.hukuki-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}
/* ===== SINGLE HUKUKİ YAYIN TASARIM DÜZELTME ===== */

.single-hukuki_yayin .site-content {
    background: #f7f5f1;
    padding: 100px 0;
}

.single-hukuki_yayin .ast-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single-hukuki_yayin .entry-header {
    margin-bottom: 40px;
}

.single-hukuki_yayin .entry-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.single-hukuki_yayin .entry-meta {
    font-size: 14px;
    color: #b99b71;
    font-weight: 500;
}

.single-hukuki_yayin .entry-content {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.single-hukuki_yayin .entry-content p {
    margin-bottom: 26px;
}

.single-hukuki_yayin .post-navigation {
    margin-top: 60px;
}
