@charset "UTF-8";

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #1f1f1f;
  --text-soft: #666666;
  --line: #e7e2d9;
  --navy: #0b1f5e;
  --navy-soft: #132b73;
  --gold: #c9a45c;
  --card: #ffffff;
  --footer: #111111;
  --max: 820px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
button {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--navy);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

ul,
ol {
  list-style-position: outside;
}

button,
input,
textarea {
  font-family: inherit;
}

#tistorytoolbarid {
  display: none;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 99999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}

.site-logo-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: #111111;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #333333;
}

.site-nav a {
  color: #333333;
}

.site-nav a:hover {
  color: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(201, 164, 92, 0.16), transparent 36%),
    linear-gradient(135deg, #111111 0%, #182033 55%, #0b1f5e 100%);
  color: #ffffff;
  border-bottom: 1px solid #dedede;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 20px 60px;
  text-align: center;
}

.hero-kicker {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero .hero-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.site-main {
  max-width: var(--max);
  margin: 52px auto 70px;
  padding: 0 20px;
}

.article-wrap {
  width: 100%;
}

.article_skin {
  width: 100%;
}

.post-list {
  width: 100%;
}

.post-list-item,
.list_content {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.post-list-item:first-child,
.list_content:first-child {
  border-top: 1px solid var(--line);
}

.post-list-item:not(:has(.thumbnail_post)),
.list_content:not(:has(.thumbnail_post)) {
  grid-template-columns: 1fr;
}

.post-list-body {
  min-width: 0;
}

.post-thumb,
.thumbnail_post {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.post-thumb img,
.thumbnail_post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-thumb:hover img,
.thumbnail_post:hover img {
  transform: scale(1.04);
}

.post-list-link,
.link_post {
  display: block;
  text-decoration: none;
}

.post-list-link:hover,
.link_post:hover {
  text-decoration: none;
}

.post-list-link h2,
.post-list-link .tit_post,
.link_post h2,
.link_post .tit_post {
  display: block;
  margin: 8px 0 10px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111111;
}

.post-list-link:hover h2,
.post-list-link:hover .tit_post,
.link_post:hover h2,
.link_post:hover .tit_post {
  color: var(--navy);
}

.post-list-link p,
.post-list-link .txt_post,
.link_post p,
.link_post .txt_post {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.detail_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.4;
}

.post-category,
.link_cate {
  display: inline-block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.post-date,
.detail_info {
  color: #999999;
  font-size: 13px;
}

.txt_bar {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #d7d0c6;
}

.empty-list {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  text-align: center;
}

.post-view {
  width: 100%;
}

.post-title-area,
.area_title {
  text-align: center;
  padding: 14px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.post-title-area .post-category,
.area_title .tit_category {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.post-title-area h1,
.area_title .tit_post {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.045em;
  color: #111111;
  margin: 0 auto 16px;
}

.post-meta,
.txt_detail {
  color: #999999;
  font-size: 13px;
}

.admin-edit a {
  color: #888888;
}

.toc-box {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 28px 0 34px;
}

.toc-title {
  font-weight: 800;
  text-align: center;
  color: #111111;
  margin-bottom: 12px;
}

#toc {
  padding-left: 22px;
  color: var(--navy);
}

#toc li {
  margin: 7px 0;
  line-height: 1.55;
}

#toc a {
  color: var(--navy);
  font-weight: 600;
}

#toc .toc-sub {
  margin-left: 14px;
  font-size: 0.95em;
  color: #46506a;
}

#toc .toc-sub a {
  color: #46506a;
  font-weight: 500;
}

.post-content {
  font-size: 18px;
  line-height: 1.9;
  color: #222222;
}

.post-content p {
  margin: 0 0 24px;
}

.post-content h2 {
  margin: 42px 0 18px;
  padding: 12px 16px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 10px;
  font-size: 25px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.post-content h3 {
  margin: 34px 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--gold);
  color: #111111;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.post-content h4 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.5;
}

.post-content ul,
.post-content ol {
  margin: 0 0 26px 24px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  color: #333333;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.post-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content img {
  display: block;
  margin: 28px auto;
  border-radius: 10px;
}

.post-content iframe {
  max-width: 100%;
}

.post-content pre {
  margin: 28px 0;
  padding: 18px;
  overflow-x: auto;
  background: #f4f4f4;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.post-content code {
  font-family: Consolas, Monaco, Menlo, monospace;
}

.post-content u {
  text-decoration: none;
  box-shadow: inset 0 -9px 0 rgba(201, 164, 92, 0.32);
}

.tag-area {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #888888;
}

.area_etc {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.area_etc .list_tag {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.area_etc .tit_tag {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.area_etc .desc_tag {
  color: #666666;
  font-size: 13px;
}

.tag-title {
  display: inline-block;
  margin-right: 8px;
  color: var(--navy);
  font-weight: 800;
}

.tag-list a {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #666666;
  font-size: 12px;
  text-decoration: none;
}

.tag-list a:hover {
  color: var(--navy);
  border-color: var(--gold);
}

.archive-title {
  text-align: center;
  margin-bottom: 32px;
}

.archive-title h1 {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.archive-title p {
  margin-top: 8px;
  color: var(--text-soft);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.tag-cloud a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: #555555;
}

.tag-cloud a:hover {
  color: var(--navy);
  border-color: var(--gold);
  text-decoration: none;
}

.protected-form {
  max-width: 480px;
  margin: 40px auto;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.protected-form p {
  margin-bottom: 16px;
}

.protected-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 10px;
}

.protected-form button {
  width: 100%;
  height: 44px;
  background: var(--navy);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.guestbook-area,
.area_reply {
  margin-top: 24px;
}

.paging {
  margin: 52px 0 20px;
}

.area_paging {
  margin: 52px 0 20px;
  text-align: center;
}

.paging,
.inner_paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.paging a,
.area_paging a {
  min-width: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  color: #555555;
  background: #ffffff;
  font-size: 14px;
}

.paging a:hover,
.area_paging a:hover {
  border-color: var(--navy);
  color: var(--navy);
  text-decoration: none;
}

.paging .selected,
.area_paging .selected {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.no-more-prev,
.no-more-next,
.no_more_prev,
.no_more_next {
  opacity: 0.35;
  pointer-events: none;
}

.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 20px;
  text-align: center;
}

.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-title {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.footer-copy {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.footer-links a {
  color: #d8dde5;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.imageblock {
  max-width: 100% !important;
  height: auto !important;
}

.another_category {
  margin-top: 48px !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  padding: 18px !important;
}

.another_category h4 {
  font-size: 16px !important;
  color: #111111 !important;
  border-bottom: 1px solid var(--line) !important;
  padding-bottom: 10px !important;
}

.another_category table {
  width: 100% !important;
  margin-top: 12px !important;
}

.another_category th {
  text-align: left !important;
  font-weight: 500 !important;
  padding: 6px 0 !important;
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
    line-height: 1.75;
  }

  .site-header-inner {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }

  .hero-inner {
    padding: 42px 20px 46px;
  }

  .hero .hero-title {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .site-main {
    margin: 34px auto 52px;
    padding: 0 16px;
  }

  .post-list-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .post-thumb {
    aspect-ratio: 16 / 9;
  }

  .post-list-link h2 {
    font-size: 23px;
  }

  .post-title-area {
    padding-top: 4px;
    margin-bottom: 22px;
  }

  .post-title-area h1 {
    font-size: 30px;
    line-height: 1.32;
  }

  .post-content {
    font-size: 17px;
    line-height: 1.82;
  }

  .post-content p {
    margin-bottom: 22px;
  }

  .post-content h2 {
    margin: 36px 0 16px;
    font-size: 22px;
    padding: 11px 14px;
  }

  .post-content h3 {
    font-size: 20px;
  }

  .toc-box {
    margin: 22px 0 28px;
    padding: 16px;
  }

}

@media (max-width: 420px) {
  .site-logo-text {
    font-size: 13px;
  }

  .hero .hero-title {
    font-size: 30px;
  }

  .post-title-area h1 {
    font-size: 27px;
  }

  .post-content {
    font-size: 16.5px;
  }
}

/* AFTERCINEMA REFERENCE CARD V3 */
.reference-card-skin-v3 .post-content .adsense-post {
  max-width: 100%;
  color: #24324a !important;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 18px !important;
  line-height: 1.9 !important;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.reference-card-skin-v3 .post-content .adsense-post .adsense-intro {
  margin: 0 0 28px;
}

.reference-card-skin-v3 .post-content .adsense-post p.adsense-paragraph,
.reference-card-skin-v3 .post-content .adsense-post p[data-ke-size="size16"] {
  margin: 0 0 24px !important;
  color: #24324a;
  font: inherit;
}

.reference-card-skin-v3 .post-content .adsense-post p.lead-intro {
  margin-bottom: 32px !important;
}

.reference-card-skin-v3 .post-content .adsense-post p.adsense-paragraph:last-child,
.reference-card-skin-v3 .post-content .adsense-post p[data-ke-size="size16"]:last-child {
  margin-bottom: 0 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .post-card {
  margin: 28px 0 !important;
  overflow: hidden;
  border: 1px solid #d7e4f3 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(40, 77, 120, 0.06);
}

.reference-card-skin-v3 .post-content .adsense-post .post-card > h2.adsense-card-heading {
  margin: 0 !important;
  padding: 16px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e6f1ff !important;
  color: #0f3f91 !important;
  font-family: inherit !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.025em !important;
}

.reference-card-skin-v3 .post-content .adsense-post .card-body {
  padding: 26px 28px !important;
}

.reference-card-skin-v3 .post-content .adsense-post .faq-card {
  border-color: #e3d9f7 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .faq-card > h2.adsense-card-heading {
  background: #f3edff !important;
  color: #5b3b91 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .conclusion-card {
  border-color: #cadcf2 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .conclusion-card > h2.adsense-card-heading {
  background: #dceeff !important;
  color: #174c80 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .summary-card {
  margin: 24px 0 0 !important;
  padding: 16px 18px !important;
  border: 0 !important;
  border-left: 4px solid #3b82f6 !important;
  border-radius: 8px !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .summary-card strong,
.reference-card-skin-v3 .post-content .adsense-post .summary-card b {
  color: #1d4ed8 !important;
  font-weight: 700 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .faq-q,
.reference-card-skin-v3 .post-content .adsense-post .faq-q strong,
.reference-card-skin-v3 .post-content .adsense-post .faq-q b {
  color: #183b6b;
  font-weight: 700 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .faq-a {
  color: #24324a;
  font-weight: 400;
}

.reference-card-skin-v3 .post-content .adsense-post a {
  color: #1d4ed8 !important;
  font-weight: 500;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.reference-card-skin-v3 .post-content .adsense-post strong,
.reference-card-skin-v3 .post-content .adsense-post b {
  color: #183b6b;
  font-weight: 700;
}

.reference-card-skin-v3 .post-content .adsense-post .adsense-list,
.reference-card-skin-v3 .post-content .adsense-post ul,
.reference-card-skin-v3 .post-content .adsense-post ol {
  margin: 20px 0 26px 24px !important;
  padding: 0 !important;
}

.reference-card-skin-v3 .post-content .adsense-post .adsense-list li,
.reference-card-skin-v3 .post-content .adsense-post li {
  margin: 0 0 10px;
  line-height: 1.75;
}

.reference-card-skin-v3 .post-content .adsense-post blockquote:not(.summary-card) {
  margin: 28px 0 !important;
  padding: 18px 22px !important;
  border-left: 4px solid #9cbce8 !important;
  background: #f7faff !important;
  color: #334155 !important;
}

.reference-card-skin-v3 .post-content .adsense-post img {
  max-width: 100%;
  height: auto;
}

.reference-card-skin-v3 .post-category,
.reference-card-skin-v3 .tit_category,
.reference-card-skin-v3 .link_cate {
  display: none !important;
}

.approval-core-links {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.approval-core-links-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px 38px;
}

.approval-core-links h2 {
  margin: 0 0 18px;
  color: #183b6b;
  font-size: 24px;
  line-height: 1.4;
}

.approval-core-links ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approval-core-links li {
  min-width: 0;
}

.approval-core-links a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 15px 16px;
  border: 1px solid #d7e4f3;
  border-radius: 9px;
  background: #ffffff;
  color: #183b6b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.approval-core-links a:hover,
.approval-core-links a:focus-visible {
  border-color: #8db4ea;
  background: #eff6ff;
  color: #0f3f91;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.skin-related-fallback {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.skin-related-fallback h2 {
  margin: 0 0 16px;
  color: #183b6b;
  font-size: 22px;
  line-height: 1.4;
}

.skin-related-fallback ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skin-related-fallback li {
  min-width: 0;
}

.skin-related-fallback a {
  display: block;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid #d7e4f3;
  border-radius: 9px;
  background: #f8fbff;
  color: #183b6b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.skin-related-fallback a:hover,
.skin-related-fallback a:focus-visible {
  border-color: #8db4ea;
  background: #eff6ff;
  color: #0f3f91;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .reference-card-skin-v3 .post-content .adsense-post {
    font-size: 16px !important;
    line-height: 1.9 !important;
  }

  .reference-card-skin-v3 .post-content .adsense-post .post-card {
    margin: 22px 0 !important;
    border-radius: 9px !important;
  }

  .reference-card-skin-v3 .post-content .adsense-post .post-card > h2.adsense-card-heading {
    padding: 14px 16px !important;
    font-size: 20px !important;
  }

  .reference-card-skin-v3 .post-content .adsense-post .card-body {
    padding: 20px !important;
  }

  .skin-related-fallback {
    margin-top: 36px;
    padding-top: 24px;
  }

  .approval-core-links-inner {
    padding: 28px 18px 32px;
  }

  .approval-core-links ul {
    grid-template-columns: 1fr;
  }

  .approval-core-links a {
    min-height: 0;
  }

  .skin-related-fallback ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .approval-core-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* AFTERCINEMA REFERENCE CARD V3 END */

/* AROS APPROVAL THEME 26.06.29 / 25.10.01 */
.reference-card-skin-v3.aros-approval-skin-v1 {
  --navy-700: #0b1f5e;
  --navy-600: #0e2a73;
  --navy-500: #1a3b94;
  --navy-400: #2f4aa0;
  --navy-200: #e9efff;
  --border-soft: #e9edf4;
}

.reference-card-skin-v3.aros-approval-skin-v1 #progress-bar {
  background: linear-gradient(90deg, var(--navy-500), var(--navy-700));
}

#tt-body-page.reference-card-skin-v3.aros-approval-skin-v1 .hero {
  display: none;
}

.reference-card-skin-v3.aros-approval-skin-v1 .site-main {
  margin-top: 42px;
}

.reference-card-skin-v3.aros-approval-skin-v1 .area_title .tit_post {
  color: #0f1115;
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.reference-card-skin-v3.aros-approval-skin-v1 .toc-box {
  box-sizing: border-box;
  width: 100%;
  margin: 24px 0 28px;
  padding: 16px 20px 10px;
  border: 1px solid #d9dfeb;
  border-radius: 8px;
  background: #ffffff;
}

.reference-card-skin-v3.aros-approval-skin-v1 .toc-box a {
  color: var(--navy-500);
  letter-spacing: 0;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .adsense-intro {
  margin-bottom: 24px;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post p.lead-intro {
  margin: 12px 0 18px !important;
  padding: 14px 16px;
  border: 1px solid #cdd6f4;
  border-radius: 8px;
  background: #f4f6fb;
  color: #2a2f45;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .post-card {
  margin: 20px 0 !important;
  overflow: hidden;
  border: 1px solid var(--border-soft) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .post-card > h2.adsense-card-heading,
.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .post-card > h3.adsense-card-heading {
  margin: 0 !important;
  padding: 12px 14px 10px !important;
  border: 0 !important;
  border-bottom: 3px solid var(--navy-700) !important;
  border-radius: 8px 8px 0 0 !important;
  background: linear-gradient(90deg, var(--navy-600) 0%, var(--navy-400) 100%) !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .faq-card > h3.adsense-card-heading {
  border-bottom-color: #5b3b91 !important;
  background: #f3edff !important;
  color: #5b3b91 !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .conclusion-card > h3.adsense-card-heading {
  border-bottom-color: #174c80 !important;
  background: #dceeff !important;
  color: #174c80 !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .card-body {
  padding: 16px 14px 18px !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .summary-card {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border-left: 4px solid var(--navy-500) !important;
  border-radius: 8px !important;
  background: var(--navy-200) !important;
  color: #25304d !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .summary-card strong,
.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .summary-card b {
  color: var(--navy-700) !important;
}

.reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .adsense-related > h3.adsense-heading {
  margin: 0 0 14px !important;
  padding: 8px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--navy-700) !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 820px) {
  .reference-card-skin-v3.aros-approval-skin-v1 .site-main {
    margin-top: 28px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .reference-card-skin-v3.aros-approval-skin-v1 .area_title .tit_post {
    padding: 0;
    font-size: 28px;
    line-height: 1.4;
  }

  .reference-card-skin-v3.aros-approval-skin-v1 .toc-box {
    padding: 14px 16px 8px;
  }

  .reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post p.adsense-paragraph,
  .reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post p[data-ke-size="size16"] {
    font-size: 17px !important;
    line-height: 1.8 !important;
  }

  .reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .post-card > h2.adsense-card-heading,
  .reference-card-skin-v3.aros-approval-skin-v1 .post-content .adsense-post .post-card > h3.adsense-card-heading {
    padding: 12px 14px 10px !important;
    font-size: 21px !important;
  }
}
/* AROS APPROVAL THEME END */
