/* fbi-style.css */

body {
    background-color: #e6e9ed;
}

.article-section {
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    justify-content: center;
}

.article-container {
    max-width: 950px;
    width: 100%;
    background: #ffffff;
    border-top: 8px solid #001f3f; /* 네이비 블루 (FBI 스타일) */
    border-bottom: 8px solid #001f3f;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 4rem 3.5rem;
    position: relative;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 문서 상단 도장/마크 느낌의 데코레이션 */
.article-container::before {
    content: "OFFICIAL REPORT // FCP ADVISORY BOARD";
    position: absolute;
    top: 15px;
    left: 3.5rem;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

.article-container::after {
    content: "CLASSIFIED: UNCLASSIFIED";
    position: absolute;
    top: 15px;
    right: 3.5rem;
    font-size: 0.8rem;
    color: #8b0000; /* 다크 레드 (경고/기밀 느낌) */
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

/* 프로필 영역 레이아웃 */
.profile-section {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ccc;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    gap: 2.5rem;
}

/* 연사 이미지 스타일 (수사 보고서 느낌 부여) */
.profile-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 15px; /* 둥근 테두리 대신 각진 테두리로 격식 강조 */
    filter: grayscale(40%) contrast(110%); /* 약간의 흑백+대비 효과 */
    box-shadow: 4px 4px 0px rgba(0, 31, 63, 0.1);
}

.profile-info {
    flex: 1;
}

.article-theme {
    font-size: 0.95rem;
    color: #8b0000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.article-title {
    font-size: 2rem;
    color: #001f3f;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -1px;
    word-break: keep-all;
}

.article-author {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #111;
    text-align: justify; /* 양쪽 정렬로 공문서의 정돈된 느낌 강화 */
    word-break: keep-all;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* 인용구 스타일 */
.article-quote {
    font-size: 1.15rem;
    font-weight: 700;
    color: #001f3f;
    border-left: 5px solid #8b0000;
    padding: 1.8rem;
    margin: 2.5rem 0;
    background: #f4f6f9;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

/* 버튼 스타일 */
.back-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 2.5rem;
    padding: 12px 24px;
    background: #001f3f;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.back-btn i {
    margin-right: 8px;
}

.back-btn:hover {
    background: #8b0000;
}

@media (max-width: 900px) {
  .profile-section { display: block; }
  .article-container::before {
      content: "FCP BOARD";
      position: absolute;
      top: 15px;
      left: 3.5rem;
      font-size: 0.8rem;
      color: #666;
      letter-spacing: 2px;
      font-weight: 700;
      font-family: 'Courier New', Courier, monospace;
  }

  .article-container::after {
      content: "UNCLASSIFIED";
      position: absolute;
      top: 15px;
      right: 3.5rem;
      font-size: 0.8rem;
      color: #8b0000; /* 다크 레드 (경고/기밀 느낌) */
      letter-spacing: 1px;
      font-weight: 700;
      font-family: 'Courier New', Courier, monospace;
  }

  .article-quote { display: none; }

}