/* =========================================== */
/* FixIt 테마 첫 화면 회색 제거 및 글자 검정 강제 */
/* =========================================== */

/* 1. 요약 섹션 글자 및 배경 강제 */
.post-summary,
.home .summary,
.archive .summary,
.post-summary *,
.summary * {
    color: #000000 !important;           /* 글자 검정 */
    background-color: #ffffff !important; /* 배경 흰색 */
    opacity: 1 !important;               /* 투명도 제거 */
}

/* 2. 본문 글자 색 강제 */
.content,
.post-single .content {
    color: #000000 !important;           /* 본문 글자 검정 */
    background-color: #ffffff !important; /* 본문 배경 흰색 */
}

/* 3. 링크 색상 강제 */
a, a:visited {
    color: #000000 !important;
}
a:hover {
    color: #333333 !important;
}

/* 4. 프로필 섹션 배경 및 글자 강제 */
.home-profile {
    background-color: #ffffff !important;
    color: #000000 !important;
}
.home-profile * {
    color: #000000 !important;
}
/* 특성 이미지가 원본보다 커지지 않게 제한 */
/* 수정된 코드: 더 구체적으로 지정 */
#post-single .featured-image img,
.single .featured-image img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}
