/* =====================================================
   ddoksun_seo_card v3 — board.default.css
   카드 그리드 + 캐러셀 + 아티클 공통 스타일
   ===================================================== */

/* ── 공통 래퍼 ────────────────────────────────────── */
.dsc-wrap {
    width: 100%;
}

/* ── 카드 그리드 ──────────────────────────────────── */
.dsc-grid {
    display: grid;
    grid-template-columns: repeat(var(--dsc-cols, 3), 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── 카드 공통 ────────────────────────────────────── */
.dsc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    transition: box-shadow .22s, transform .22s;
    display: flex;
    flex-direction: column;
}
.dsc-card:hover {
    box-shadow: 0 6px 24px rgba(108,99,255,.14);
    transform: translateY(-3px);
}

/* 카드 링크 */
.dsc-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

/* ── 썸네일 ───────────────────────────────────────── */
.dsc-card-thumb-wrap {
    width: 100%;
    aspect-ratio: var(--dsc-ratio, 1/1);
    overflow: hidden;
    background: #f0eeff;
    flex-shrink: 0;
}
.dsc-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.dsc-card:hover .dsc-card-thumb {
    transform: scale(1.05);
}

/* 썸네일 placeholder */
.dsc-card-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0eeff 0%, #e8e2ff 100%);
}
.dsc-thumb-icon {
    font-size: 32px;
    opacity: .5;
}

/* ── 카드 텍스트 영역 ─────────────────────────────── */
.dsc-card-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.dsc-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.dsc-card-exc {
    font-size: 12.5px;
    color: #777;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    flex: 1;
}
.dsc-card-date {
    font-size: 11.5px;
    color: #bbb;
    margin-top: auto;
}

/* ── 빈 상태 ──────────────────────────────────────── */
.dsc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #bbb;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.dsc-empty-icon { font-size: 36px; }

/* ── 페이지네이션 ─────────────────────────────────── */
.dsc-pager {
    display: flex;
    justify-content: center;
    padding: 28px 0 8px;
    gap: 4px;
    flex-wrap: wrap;
}
.dsc-pager--hidden { display: none; }

/* Rhymix 기본 페이지네이터 스타일 오버라이드 */
.dsc-pager .paginate_wrap,
.dsc-pager nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.dsc-pager a,
.dsc-pager strong,
.dsc-pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.dsc-pager a:hover {
    background: #f0eeff;
    border-color: #c5baff;
    color: #6c63ff;
    text-decoration: none;
}
.dsc-pager strong {
    background: #6c63ff;
    border-color: #6c63ff;
    color: #fff;
    font-weight: 700;
}

/* ── 캐러셀 ───────────────────────────────────────── */
.dsc-carousel {
    position: relative;
    width: 100%;
}
.dsc-carousel-track-wrap {
    overflow: hidden;
    border-radius: 14px;
}
.dsc-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
    list-style: none;
    margin: 0;
}
.dsc-carousel-track::-webkit-scrollbar { display: none; }
.dsc-carousel-track .dsc-card {
    flex: 0 0 calc(33.333% - 11px);
    scroll-snap-align: start;
}
.dsc-carousel-btn {
    position: absolute;
    top: calc(var(--dsc-ratio-pct, 50%) / 2);
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-size: 22px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, box-shadow .15s;
    line-height: 1;
}
.dsc-carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(108,99,255,.18);
    color: #6c63ff;
}
.dsc-carousel-prev { left: -16px; }
.dsc-carousel-next { right: -16px; }

/* ── 인라인 배너 (읽기 뷰, _read.html에서 사용) ────── */
.ddsf-chip-active {
    background: #6c63ff !important;
    color: #fff !important;
    border-color: #6c63ff !important;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
    .dsc-grid {
        grid-template-columns: repeat(min(var(--dsc-cols, 3), 2), 1fr);
        gap: 18px;
    }
    .dsc-carousel-track .dsc-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .dsc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .dsc-card-info { padding: 11px 12px 14px; }
    .dsc-card-title { font-size: 13.5px; }
    .dsc-carousel-track .dsc-card {
        flex: 0 0 calc(50% - 8px);
    }
    .dsc-carousel-prev { left: -8px; }
    .dsc-carousel-next { right: -8px; }
    .dsc-carousel-btn { width: 32px; height: 32px; font-size: 18px; }
    .dsc-pager a,
    .dsc-pager strong,
    .dsc-pager span {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .dsc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .dsc-card-info { padding: 9px 10px 12px; }
    .dsc-card-title { font-size: 13px; -webkit-line-clamp: 2; }
    .dsc-card-exc { display: none; }
    .dsc-carousel-track .dsc-card {
        flex: 0 0 calc(75% - 8px);
    }
}
/* =====================================================
   ddsf-related-wrap v2: 함께 보면 좋은 글
   텍스트 링크 중심 / 모바일 1화면 4~6개 / SEO 친화
   ===================================================== */

/* ── 섹션 래퍼 ────────────────────────────────────── */
.ddsf-related-wrap {
    margin: 36px 0 28px;
    border-top: 2px solid #ede9ff;
    padding-top: 20px;
    /* 모바일 최대 높이 제한: 6개 × 약 52px = 312px */
    /* max-height: none; → JS 없이 CSS만으로 처리 */
}

/* ── 헤더 ─────────────────────────────────────────── */
.ddsf-related-head {
    margin-bottom: 12px;
}
.ddsf-related-heading {
    font-size: 15px;
    font-weight: 700;
    color: #2d2b55;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.3px;
}
.ddsf-related-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* ── 리스트 ───────────────────────────────────────── */
.ddsf-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── 아이템 ─────────────────────────────────────────
   PC:  padding 12px → 약 44px / 아이템
   모바일: padding 10px → 약 40px / 아이템
   6개 = ~240px → 모바일 1화면(667px) 내 충분히 표시
─────────────────────────────────────────────────── */
.ddsf-related-item {
    border-bottom: 1px solid #f0eeff;
}
.ddsf-related-item:last-child {
    border-bottom: none;
}

/* ── 링크 ─────────────────────────────────────────── */
.ddsf-related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 4px;
    text-decoration: none !important;
    color: inherit;
    transition: background .15s;
    border-radius: 6px;
}
.ddsf-related-link:hover,
.ddsf-related-link:focus {
    background: #f8f6ff;
    text-decoration: none !important;
    outline: none;
}
.ddsf-related-link:hover .ddsf-related-title,
.ddsf-related-link:focus .ddsf-related-title {
    color: #6c63ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── 번호 배지 (CSS counter 자동 번호 — HTML에 숫자 직접 기입 불필요) ── */
.ddsf-related-list {
    counter-reset: ddr-num;
}
.ddsf-related-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #ede9ff;
    color: #6c63ff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    counter-increment: ddr-num;
}
.ddsf-related-num::before {
    content: counter(ddr-num);
}
/* 1~3위 강조 */
.ddsf-related-item:nth-child(1) .ddsf-related-num { background:#6c63ff; color:#fff; }
.ddsf-related-item:nth-child(2) .ddsf-related-num { background:#9d96ff; color:#fff; }
.ddsf-related-item:nth-child(3) .ddsf-related-num { background:#c5baff; color:#fff; }

/* ── 텍스트 영역 ──────────────────────────────────── */
.ddsf-related-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── 제목 (anchor text = 게시글 제목 그대로) ─────── */
.ddsf-related-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    /* 1줄 말줄임: 모바일 화면에서 4~6개가 한눈에 들어오도록 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}

/* ── 메타 (공통 태그 + 날짜) ─────────────────────── */
.ddsf-related-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.ddsf-related-tags {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}
.ddsf-related-tag {
    font-size: 10.5px;
    color: #6c63ff;
    background: #f0eeff;
    border-radius: 3px;
    padding: 1px 5px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}
.ddsf-related-date {
    font-size: 11px;
    color: #bbb;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── 화살표 ───────────────────────────────────────── */
.ddsf-related-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: #d0caff;
    line-height: 1;
    transition: color .15s, transform .15s;
}
.ddsf-related-link:hover .ddsf-related-arrow {
    color: #6c63ff;
    transform: translateX(2px);
}

/* ── RESPONSIVE ───────────────────────────────────── */

/* 태블릿 이하 */
@media (max-width: 767px) {
    .ddsf-related-wrap  { margin: 24px 0 16px; padding-top: 16px; }
    .ddsf-related-heading { font-size: 14px; }
    .ddsf-related-link  { padding: 10px 2px; gap: 8px; }
    .ddsf-related-title { font-size: 13.5px; }
    .ddsf-related-num   { width: 18px; height: 18px; font-size: 10px; }
}

/* 소형 모바일(480px 이하):
   아이템 높이를 더 줄여 6개가 화면에 완전히 들어오도록 */
@media (max-width: 480px) {
    .ddsf-related-wrap  { margin: 20px 0 12px; padding-top: 14px; }
    .ddsf-related-link  { padding: 9px 2px; gap: 7px; }
    .ddsf-related-title { font-size: 13px; }
    .ddsf-related-tag   { display: none; }   /* 태그 숨겨서 높이 절약 */
    .ddsf-related-date  { display: none; }   /* 날짜 숨겨서 높이 절약 */
    .ddsf-related-arrow { display: none; }
    .ddsf-related-num   { width: 17px; height: 17px; font-size: 9.5px; }
}

/* =====================================================
   DDOKSUN related posts v3 override
   게시글 상세 하단 '함께 보면 좋은 글' 안정 출력
   ===================================================== */
.board_read + .ddsf-related-wrap,
.ddsf-related-wrap {
    max-width: 1080px;
    margin: 56px auto 40px !important;
    padding: 28px 28px 22px !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06) !important;
    box-sizing: border-box !important;
}
.ddsf-related-head {
    margin-bottom: 16px !important;
}
.ddsf-related-kicker {
    margin: 0 0 6px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    color: #4f6fff !important;
}
.ddsf-related-heading {
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    color: #111827 !important;
}
.ddsf-related-desc {
    margin: 8px 0 0 !important;
    font-size: 14px !important;
    color: #6b7280 !important;
}
.ddsf-related-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    counter-reset: ddr-num !important;
}
.ddsf-related-item {
    border-bottom: 1px solid #edf1f6 !important;
}
.ddsf-related-item:last-child {
    border-bottom: 0 !important;
}
.ddsf-related-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 4px !important;
    border-radius: 12px !important;
    color: inherit !important;
    text-decoration: none !important;
}
.ddsf-related-link:hover {
    background: #f7f9ff !important;
}
.ddsf-related-num {
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: #eef2ff !important;
    color: #4f6fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 24px !important;
    counter-increment: ddr-num !important;
}
.ddsf-related-num::before {
    content: counter(ddr-num) !important;
}
.ddsf-related-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.ddsf-related-title {
    display: block !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
    color: #111827 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.ddsf-related-date {
    display: block !important;
    margin-top: 3px !important;
    font-size: 12px !important;
    color: #9ca3af !important;
}
.ddsf-related-arrow {
    flex: 0 0 auto !important;
    font-size: 22px !important;
    color: #c7d2fe !important;
}
@media (max-width: 768px) {
    .ddsf-related-wrap {
        margin: 36px 0 28px !important;
        padding: 22px 18px 16px !important;
        border-radius: 20px !important;
    }
    .ddsf-related-heading { font-size: 19px !important; }
    .ddsf-related-title { font-size: 14px !important; }
    .ddsf-related-link { padding: 12px 2px !important; }
}

.dsc-card-thumb-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsc-card-thumb {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* DDOKSUN: 글쓰기 제목 입력칸 확장 */
.board_write .write_header {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.board_write .write_header input[name="title"],
.board_write .write_header .iText {
    flex: 1 1 auto;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    height: 42px;
    box-sizing: border-box;
    padding: 0 14px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.board_write .write_header select[name="is_notice"] {
    flex: 0 0 auto;
    height: 42px;
    min-width: 100px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 8px;
}

/* DDOKSUN: 글쓰기 제목 + 서머리 체크 UI 정리 */
.board_write {
    max-width: 980px;
    margin: 0 auto;
}

.board_write .write_header {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 0 0 14px 0;
}

.board_write .write_header input[name="title"],
.board_write .write_header .iText {
    flex: 1 1 auto;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #111827;
}

.board_write .write_header input[name="title"]:focus,
.board_write .write_header .iText:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.13);
}

.board_write .write_header select[name="is_notice"] {
    flex: 0 0 auto;
    height: 44px;
    min-width: 104px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 10px;
    background: #fff;
}

/* 기존 확장변수 테이블을 카드형 옵션 박스로 변경 */
.board_write .exForm {
    margin: 0 0 14px 0;
}

.board_write .exForm table {
    width: 100%;
    border: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
}

.board_write .exForm caption {
    display: none;
}

.board_write .exForm tr,
.board_write .exForm th,
.board_write .exForm td {
    border: 0 !important;
}

.board_write .exForm tr {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.board_write .exForm th {
    display: block;
    width: auto !important;
    padding: 0 0 8px 0 !important;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.board_write .exForm th::before {
    content: "⚙ ";
}

.board_write .exForm td {
    display: block;
    padding: 0 !important;
}

.board_write .rx_ev_checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.board_write .rx_ev_checkbox li {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.board_write .rx_ev_checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 7px 0 0;
    accent-color: #2563eb;
    cursor: pointer;
}

.board_write .rx_ev_checkbox label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0ecff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.board_write .rx_ev_checkbox label::before {
    content: "본문 접기 ";
}

.board_write .rx_ev_description {
    margin: 8px 0 0 25px !important;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
}

/* 에디터와 간격 */
.board_write .write_editor {
    margin-top: 12px;
}

/* DDOKSUN: 글쓰기 제목 + 서머리 체크 UI 정리 */
.board_write {
    max-width: 980px;
    margin: 0 auto;
}

.board_write .write_header {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 0 0 14px 0;
}

.board_write .write_header input[name="title"],
.board_write .write_header .iText {
    flex: 1 1 auto;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #111827;
}

.board_write .write_header input[name="title"]:focus,
.board_write .write_header .iText:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.13);
}

.board_write .write_header select[name="is_notice"] {
    flex: 0 0 auto;
    height: 44px;
    min-width: 104px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 10px;
    background: #fff;
}

/* 기존 확장변수 테이블을 카드형 옵션 박스로 변경 */
.board_write .exForm {
    margin: 0 0 14px 0;
}

.board_write .exForm table {
    width: 100%;
    border: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
}

.board_write .exForm caption {
    display: none;
}

.board_write .exForm tr,
.board_write .exForm th,
.board_write .exForm td {
    border: 0 !important;
}

.board_write .exForm tr {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.board_write .exForm th {
    display: block;
    width: auto !important;
    padding: 0 0 8px 0 !important;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.board_write .exForm th::before {
    content: "⚙ ";
}

.board_write .exForm td {
    display: block;
    padding: 0 !important;
}

.board_write .rx_ev_checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.board_write .rx_ev_checkbox li {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.board_write .rx_ev_checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 7px 0 0;
    accent-color: #2563eb;
    cursor: pointer;
}

.board_write .rx_ev_checkbox label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0ecff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.board_write .rx_ev_checkbox label::before {
    content: "본문 접기 ";
}

.board_write .rx_ev_description {
    margin: 8px 0 0 25px !important;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
}

/* 에디터와 간격 */
.board_write .write_editor {
    margin-top: 12px;
}

/* searchdoc related posts soft typography */
.ddsf-related-wrap {
    border-radius: 24px !important;
    border: 1px solid #e5eaf3 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .035) !important;
}

.ddsf-related-kicker {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    color: #2563eb !important;
}

.ddsf-related-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.045em !important;
    color: #111827 !important;
}

.ddsf-related-desc,
.ddsf-related-wrap p {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #475569 !important;
}

.ddsf-related-list a,
.ddsf-related-item a,
.ddsf-related-wrap a {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.04em !important;
    color: #111827 !important;
    text-decoration: none !important;
}

.ddsf-related-list strong,
.ddsf-related-item strong,
.ddsf-related-wrap strong {
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .ddsf-related-heading {
        font-size: 21px !important;
        font-weight: 700 !important;
    }

    .ddsf-related-list a,
    .ddsf-related-item a,
    .ddsf-related-wrap a {
        font-size: 15px !important;
        font-weight: 600 !important;
    }
}

/* searchdoc related post item title weight fix */
.ddsf-related-wrap .ddsf-related-title,
.ddsf-related-wrap .ddsf-related-item-title,
.ddsf-related-wrap .ddsf-related-link,
.ddsf-related-wrap .ddsf-related-list a,
.ddsf-related-wrap .ddsf-related-item a,
.ddsf-related-wrap li a,
.ddsf-related-wrap a,
.ddsf-related-wrap strong {
    font-weight: 500 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
}

.ddsf-related-wrap .ddsf-related-heading {
    font-weight: 700 !important;
}
