/* ========================================
   株式会社ブレイバー - braver.co.jp
   ミニマルデザイン
   ======================================== */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  font-weight: 500;
  padding-top: 52px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

a:hover {
  color: #000;
  text-decoration: none;
}

/* ========================================
   Header / Navigation
   ======================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  text-decoration: none;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #111;
}

/* ========================================
   Main Content
   ======================================== */

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   Hero
   ======================================== */

.hero {
  padding: 8rem 0 6rem;
  border-bottom: 1px solid #e5e5e5;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: #111;
  line-height: 1.4;
}

.hero p {
  font-size: 1.125rem;
  color: #333;
  line-height: 2;
  max-width: 36rem;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 0.875rem;
  color: #888;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* ========================================
   Sections
   ======================================== */

section {
  padding: 5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

section:last-child {
  border-bottom: none;
}

h2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  color: #111;
  text-transform: none;
}

/* ========================================
   Services
   ======================================== */

.service {
  margin-bottom: 3rem;
  padding-left: 1.25rem;
  border-left: 2px solid #e5e5e5;
  transition: border-color 0.3s;
}

.service:hover {
  border-left-color: #333;
}

.service:last-child {
  margin-bottom: 0;
}

.service h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-brand {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.service p {
  font-size: 0.9375rem;
  color: #333;
}

.service-link {
  margin-top: 0.75rem;
}

.service-link a {
  font-size: 0.8125rem;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.service-link a:hover {
  color: #222;
  border-bottom-color: #222;
}

/* Pricing (AI駆動経営コンサルティング) */

.pricing {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-plan {
  padding: 1.25rem 1.5rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.pricing-plan h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.pricing-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.375rem;
}

.pricing-tax {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #888;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
}

.pricing-note {
  font-size: 0.8125rem;
  color: #888;
  margin-top: 0.25rem;
}

/* Price Page */

.price-page {
  max-width: 800px;
  margin: 0 auto;
}

.price-page .pricing,
.price-page .price-cta {
  max-width: 640px;
}

.price-page h1 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-lead {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.price-page > .pricing {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
}

.price-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.price-cta a {
  font-size: 0.9375rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #999;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.price-cta a:hover {
  color: #111;
  border-bottom-color: #111;
}

.price-cta-sub {
  margin-top: 0.75rem;
}

.price-cta-sub a {
  font-size: 0.8125rem;
  color: #666;
}

/* Case Studies - Card Grid */

.case-studies {
  margin-top: 3rem;
}

.case-studies h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.case-studies-lead {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.case-study-card {
  padding: 1.5rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.case-study-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #555;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.125rem 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.case-study-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #222;
  line-height: 1.5;
}

.case-study-desc {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
}

.case-study-effect {
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ebebeb;
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
}

.case-study-effect::before {
  content: "効果：";
  font-weight: 600;
  color: #666;
}

/* R&D Section */

.rd-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
}

.rd-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rd-item {
  padding: 1.25rem 1.5rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.rd-item h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.rd-item p {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.7;
}

/* Pricing section heading */

.price-page > .pricing h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-page .pricing-plan h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

/* ========================================
   Company Table
   ======================================== */

table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.2s;
}

tr:hover {
  background: #fafafa;
}

tr:last-child {
  border-bottom: none;
}

th, td {
  padding: 1rem 0;
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
}

th {
  width: 15rem;
  font-weight: 500;
  color: #555;
  padding-right: 1.5rem;
  white-space: nowrap;
}

td {
  color: #333;
}

td a {
  color: #333;
}

/* ========================================
   Timeline (History)
   ======================================== */

.timeline {
  margin: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline dt {
  flex-shrink: 0;
  width: 5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #555;
}

.timeline dd {
  font-size: 0.9375rem;
  color: #333;
}

/* ========================================
   Contact Form
   ======================================== */

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.required {
  color: #c00;
  font-size: 0.75rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: #111;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #333;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.06);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-submit {
  margin-top: 2rem;
}

button[type="submit"] {
  display: inline-block;
  padding: 0.875rem 3rem;
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 500;
  color: #fff;
  background: #222;
  border: 1px solid #222;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

button[type="submit"]:hover {
  background: #fff;
  color: #222;
}

button[type="submit"]:active {
  transform: scale(0.98);
}

button[type="submit"]:disabled {
  background: #999;
  border-color: #999;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 0.875rem;
}

.form-status.success {
  background: #f0f9f0;
  color: #1a5c1a;
  border: 1px solid #c3e6c3;
}

.form-status.error {
  background: #fdf0f0;
  color: #8b1a1a;
  border: 1px solid #e6c3c3;
}

/* ========================================
   Footer
   ======================================== */

footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  font-size: 0.8125rem;
  color: #aaa;
  letter-spacing: 0.02em;
}

.footer-address {
  margin-top: 0.25rem;
}

/* ========================================
   Language Switcher
   ======================================== */

.lang-switch {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: color 0.2s, border-color 0.2s;
}

.lang-switch:hover {
  color: #222;
  border-color: #222;
  text-decoration: none;
}

/* ========================================
   Note Link (in company table)
   ======================================== */

.note-link {
  display: inline-block;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  vertical-align: middle;
  transition: color 0.2s, border-color 0.2s;
}

.note-link:hover {
  color: #222;
  border-color: #222;
}

/* ========================================
   Note Page
   ======================================== */

.note-header {
  padding: 6rem 0 3rem;
  border-bottom: 1px solid #e5e5e5;
}

.note-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.note-author {
  font-size: 0.875rem;
  color: #888;
}

.note-list {
  padding: 3rem 0;
  border-bottom: none;
}

.note-category {
  margin-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #222;
}

.note-category:first-child {
  margin-top: 0;
}

.note-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.note-category-desc {
  font-size: 0.875rem;
  color: #888;
}

/* Note: Article List Item (category pages) */
.note-item {
  display: block;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.note-item:first-of-type {
  border-top: 1px solid #e5e5e5;
}

.note-item:hover {
  color: #111;
  text-decoration: none;
}

.note-item-date {
  display: block;
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 0.375rem;
}

.note-item-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.note-item-summary {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Note: Single Article Page */
.note-single {
  padding: 0 0 3rem;
}

.note-single-header {
  padding: 5rem 0 2.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.note-single-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  border: 1px solid #ddd;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.75rem;
}

.note-single-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.note-single-body {
  padding: 2.5rem 0;
  font-size: 0.9375rem;
  color: #333;
  line-height: 2;
}

.note-single-body p {
  margin-bottom: 2rem;
}

.note-single-body p:last-child {
  margin-bottom: 0;
}

.note-single-footer {
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.note-back-link {
  font-size: 0.875rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.note-back-link:hover {
  color: #333;
  text-decoration: none;
}

/* Note: Breadcrumb */
.note-breadcrumb {
  display: inline-block;
  font-size: 0.8125rem;
  color: #888;
  padding: 1.5rem 0 0;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.note-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.note-breadcrumb a:hover {
  color: #333;
}

.note-breadcrumb-sep {
  margin: 0 0.5rem;
  color: #ccc;
}

.note-category-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note-category-card {
  display: block;
  padding: 2rem 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.note-category-card:hover {
  border-color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #333;
}

.note-category-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.note-category-card-desc {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0;
}

.note-category-card-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #ccc;
  transition: color 0.2s, transform 0.2s;
}

.note-category-card:hover .note-category-card-arrow {
  color: #333;
  transform: translateY(-50%) translateX(4px);
}

.note-recent {
  padding: 3rem 0;
  border-bottom: none;
}

.note-recent h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1.5rem;
}

.note-recent-item {
  display: block;
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.note-recent-item:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.note-recent-item:hover {
  text-decoration: none;
  color: #111;
}

.note-recent-date {
  font-size: 0.8125rem;
  color: #888;
}

.note-recent-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  border: 1px solid #ddd;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.75rem;
}

.note-recent-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0 0.375rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.note-recent-summary {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Note: Disclaimer */
.note-disclaimer {
  margin-top: 3rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-left: 4px solid #ccc;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}

.note-disclaimer p {
  margin: 0;
}

.note-empty {
  font-size: 0.9375rem;
  color: #888;
}

.note-article {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.note-article:last-child {
  border-bottom: none;
}

.note-date {
  display: block;
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.note-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.note-body {
  font-size: 0.9375rem;
  color: #333;
  line-height: 2;
}

.note-body p {
  margin-bottom: 1.5rem;
}

.note-body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Accordion (details/summary)
   ======================================== */

.accordion {
  margin: 0;
}

.accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  list-style-type: none;
  -webkit-user-select: none;
  user-select: none;
}

.accordion > summary::-webkit-details-marker {
  display: none;
}

.accordion > summary::marker {
  display: none;
  content: "";
  font-size: 0;
}

.accordion > summary::before {
  display: none;
}

.accordion > summary h2 {
  margin-bottom: 0;
}

.accordion-icon {
  font-size: 0.75rem;
  color: #888;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion > :nth-child(2) {
  margin-top: 3rem;
}

/* ========================================
   Media (メディア掲載)
   ======================================== */

.media-category {
  margin-bottom: 2.5rem;
}

.media-category:last-child {
  margin-bottom: 0;
}

.media-category h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.media-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.media-list li {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.media-list li:last-child {
  border-bottom: none;
}

.media-list a {
  color: #333;
  font-size: 0.9375rem;
}

.media-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #222;
}

.media-name::after {
  content: " \2014  ";
  font-weight: 400;
  color: #aaa;
}

.media-name a {
  color: #222;
  text-decoration: none;
}

.media-name a:hover {
  text-decoration: underline;
}

.media-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

.media-desc a {
  color: #666;
  font-size: 0.875rem;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 600px) {
  body {
    padding-top: 120px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
  }

  .nav-links {
    gap: 0.6rem 0.75rem;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }

  .hero p {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }

  .hero-sub {
    font-size: 0.8125rem;
  }

  section {
    padding: 3.5rem 0;
  }

  h2 {
    margin-bottom: 2rem;
  }

  .service {
    padding-left: 1rem;
  }

  .price-page h1 {
    font-size: 1.125rem;
  }

  .price-lead {
    font-size: 0.8125rem;
  }

  .pricing-plan {
    padding: 1rem 1.25rem;
  }

  .pricing-price {
    font-size: 1rem;
  }

  .rd-item {
    padding: 1rem 1.25rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card {
    padding: 1.25rem;
  }

  th {
    display: block;
    width: 100%;
    padding-bottom: 0.25rem;
    white-space: normal;
  }

  td {
    display: block;
    padding-top: 0;
    padding-bottom: 1rem;
  }

  tr {
    display: block;
    padding: 0.75rem 0;
  }

  tr:hover {
    background: transparent;
  }

  .timeline-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .timeline dt {
    width: auto;
  }

  button[type="submit"] {
    width: 100%;
    text-align: center;
  }

  /* Note: Mobile */
  .note-header {
    padding: 4rem 0 2rem;
  }

  .note-header h1 {
    font-size: 1.25rem;
  }

  .note-recent-item {
    padding: 1.75rem 0;
  }

  .note-recent-title {
    font-size: 0.9375rem;
  }

  .note-item {
    padding: 1.5rem 0;
  }

  .note-item-title {
    font-size: 1rem;
  }

  .note-single-header {
    padding: 3.5rem 0 2rem;
  }

  .note-single-title {
    font-size: 1.25rem;
  }

  .note-single-body {
    padding: 2rem 0;
  }

  .note-breadcrumb {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .note-category-card {
    padding: 1.5rem 1.25rem;
  }
}
