/* 業務用表示シールページ専用スタイル */

/* ===== ヒーローセクション ===== */
.hero {
    position: relative;
    color: var(--color-white);
    overflow: hidden;
  }
  
  .hero__inner {
    position: relative;
  }
  
  .hero__image {
    position: relative;
    width: 100%;
    height: 300px; /* デフォルト高さ */
    overflow: hidden;
  }
  
  .hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .hero--guide .hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 59, 111, 0.8), rgba(15, 59, 111, 0.3));
    z-index: 1;
  }
  
  .hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    z-index: 2;
  }
  
  .hero__content h1 {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
  }
  
  .hero__content .lead {
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
  }
  
  /* ===== パンくずリスト（ヒーロー内配置） ===== */
  .hero .breadcrumb-container {
    background-color: var(--color-light);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
  }


.hero__image {
    position: relative;
    width: 100%;
    height: 300px; /* デフォルト高さ */
    overflow: hidden;
  }
  
  .hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .hero--guide .hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 59, 111, 0.8), rgba(15, 59, 111, 0.3));
    z-index: 1;
  }
  
  .hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    z-index: 2;
  }
  
  .hero__content h1 {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
  }
  
  .hero__content .lead {
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
  }
  
  /* ===== パンくずリスト（共通） ===== */
  .breadcrumb--dark {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    list-style: none;
    padding: 0;
    align-items: center;
  }
  
  .breadcrumb--dark .breadcrumb__item {
    color: var(--color-secondary);
    padding: 0 1.5rem 0 0;
    position: relative;
    font-size: var(--font-sm);
    line-height: 1.5;
  }
  
  .breadcrumb--dark .breadcrumb__item:first-child {
    padding-left: 0;
  }
  
  .breadcrumb--dark .breadcrumb__item:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: 0.5rem;
    color: var(--color-secondary);
    font-weight: normal;
    font-size: var(--font-md);
  }
  
  .breadcrumb--dark .breadcrumb__item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .breadcrumb--dark .breadcrumb__item a:hover {
    text-decoration: underline;
    color: var(--color-accent);
  }
  
  .breadcrumb--dark .breadcrumb__item[aria-current="page"] {
    color: var(--color-black);
    font-weight: 600;
  }
  
  /* ===== セクション共通スタイル ===== */
  .hero {
    padding: 0;
    background: none !important;
  }
  
  main > section:not(.hero) {
    padding: var(--space-2xl) 0;
  }
  
  main > section:not(.hero):nth-of-type(even) { 
    background-color: var(--color-light); 
  }
  
  main > section:not(.hero):nth-of-type(odd) { 
    background-color: var(--color-white); 
  }
  
  /* ===== カテゴリー別実績セクション ===== */
  .case-categories {
    /* セクション共通設定を使用 */
  }
  
  .category-section {
    margin-bottom: var(--space-3xl);
  }
  
  .category-title {
    font-size: var(--font-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
    font-weight: 700;
    position: relative;
  }
  
  .category-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto 0;
  }
  
  .category-more {
    text-align: center;
    margin-top: var(--space-xl);
  }
  
  .category-more .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .category-more .btn i {
    font-size: var(--font-md);
    transition: transform 0.3s ease;
  }
  
  .category-more .btn:hover i {
    transform: translateX(3px);
  }
  
  /* ===== カードグリッドセクション ===== */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    list-style: none;
    margin: var(--space-xl) 0 0;
    padding: 0;
  }
  
  .card {
    display: block;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .card:hover img {
    transform: scale(1.05);
  }
  
  .card-body {
    padding: var(--space-md);
  }
  
  .card-title {
    font-size: var(--font-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    line-height: 1.4;
  }
  
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: var(--space-sm) 0 0;
    padding: 0;
  }
  
  .tags li {
    background: var(--color-light);
    color: var(--color-black);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: var(--font-sm);
    font-weight: 500;
  }
  
  /* ===== 素材選定ガイドセクション ===== */
  .material-guide {
    /* セクション共通設定を使用 */
  }
  
  .material-section {
    margin-bottom: var(--space-3xl);
  }
  
  .material-section-title {
    font-size: var(--font-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
    font-weight: 700;
    position: relative;
  }
  
  .material-section-title::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background-color: var(--color-secondary);
    margin: var(--space-sm) auto 0;
  }
  
  .material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }
  
  .material-item {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-accent);
  }
  
  .material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }
  
  .material-item__header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
  }
  
  .material-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
  }
  
  .material-item__icon i {
    font-size: var(--font-xl);
    color: var(--color-white);
  }
  
  .material-item__title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
  }
  
  .material-item__description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
  }
  
  .material-item__details {
    background: var(--color-light);
    border-radius: 8px;
    padding: var(--space-sm);
    font-size: var(--font-sm);
    color: var(--color-secondary);
    line-height: 1.6;
  }
  
  .material-item__details strong {
    color: var(--color-primary);
  }
  
  /* ===== 簡単チェックセクション ===== */
  .quick-check {
    /* セクション共通設定を使用 */
  }
  
  .check-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
  }
  
  .check-section {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-light);
  }
  
  .check-section__title {
    font-size: var(--font-xl);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
  }
  
  .check-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .check-item {
    background: var(--color-light);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
  }
  
  .check-item__title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
  }
  
  .check-item__content {
    font-size: var(--font-sm);
    color: var(--color-black);
    margin: 0;
  }
  
  .check-arrow {
    text-align: center;
    font-size: var(--font-xl);
    color: var(--color-accent);
    font-weight: bold;
    margin: var(--space-sm) 0;
  }
  
  .check-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-sm);
  }
  
  .check-branch {
    background: var(--color-white);
    border-radius: 6px;
    padding: var(--space-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .check-branch--yes {
    border-color: var(--color-success);
  }
  
  .check-branch--no {
    border-color: var(--color-secondary);
  }
  
  .check-branch__label {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
  }
  
  .check-branch--yes .check-branch__label {
    background-color: var(--color-success);
    color: var(--color-white);
  }
  
  .check-branch--no .check-branch__label {
    background-color: var(--color-secondary);
    color: var(--color-white);
  }
  
  .check-branch__content {
    font-size: var(--font-sm);
    color: var(--color-black);
    margin: 0;
    line-height: 1.5;
  }
  
  .check-branch small {
    display: block;
    margin-top: var(--space-xs);
    color: var(--color-secondary);
    font-size: var(--font-xs);
  }
  
  .check-result {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
    font-size: var(--font-md);
    font-weight: 600;
    margin-top: var(--space-md);
  }
  
  .check-result .highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
  }
  
  /* ===== 推奨早見表 ===== */
  .quick-reference {
    margin-top: var(--space-2xl);
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .quick-reference__title {
    font-size: var(--font-xl);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
  }
  
  .reference-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .reference-row {
    display: grid;
    grid-template-columns: 2fr auto 2fr;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .reference-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
  }
  
  .reference-condition {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    padding: var(--space-sm);
    background: var(--color-white);
    border-radius: 6px;
    border: 1px solid rgba(15, 59, 111, 0.1);
  }
  
  .reference-arrow {
    font-size: var(--font-2xl);
    color: var(--color-accent);
    font-weight: bold;
    text-align: center;
  }
  
  .reference-spec {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    padding: var(--space-sm);
    background: linear-gradient(135deg, rgba(60, 137, 200, 0.1), rgba(60, 137, 200, 0.05));
    border-radius: 6px;
    border-left: 3px solid var(--color-accent);
  }
  
  /* ===== 運用ガイドセクション ===== */
  .guide-container {
    /* セクション共通設定を使用 */
  }
  
  .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .guide-item {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-accent);
  }
  
  .guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }
  
  .guide-item__header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
  }
  
  .guide-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
  }
  
  .guide-item__icon i {
    font-size: var(--font-xl);
    color: var(--color-white);
  }
  
  .guide-item__title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
  }
  
  .guide-item__description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
  }
  
  .guide-item__details {
    background: var(--color-light);
    border-radius: 8px;
    padding: var(--space-sm);
    font-size: var(--font-sm);
    color: var(--color-secondary);
    line-height: 1.6;
  }
  
  .guide-item__details strong {
    color: var(--color-primary);
  }
  
  /* ===== FAQ詳細セクション ===== */
  .faq-container {
    /* セクション共通設定を使用 */
  }
  
  details {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: var(--space-md);
    margin: var(--space-md) 0;
    background: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
  }
  
  details[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
  }
  
  summary {
    cursor: pointer;
    font-weight: 600;
    outline: none;
    font-size: var(--font-md);
    color: var(--color-primary);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.3s ease;
  }
  
  summary:hover {
    color: var(--color-accent);
  }
  
  summary::marker {
    color: var(--color-accent);
  }
  
  details p {
    margin-top: var(--space-sm);
    line-height: 1.7;
    color: var(--color-black);
  }
  
  /* ===== 業務用表示シール専用CTAセクション ===== */
  .cta-section-guide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section-guide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(15, 59, 111, 0.03), rgba(60, 137, 200, 0.08));
    transform: rotate(15deg);
    z-index: 1;
  }
  
  .cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .cta-text-area {
    padding-right: var(--space-lg);
  }
  
  .cta-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
    position: relative;
  }
  
  .cta-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-sm);
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
  }
  
  .cta-description {
    font-size: var(--font-lg);
    color: var(--color-secondary);
    line-height: 1.8;
    margin: 0;
  }
  
  .cta-button-area {
    text-align: center;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 480px;
  }
  
  .btn--cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    font-size: var(--font-lg);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 59, 111, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    margin-bottom: var(--space-md);
  }
  
  .btn--cta-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }
  
  .btn--cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 59, 111, 0.4);
    color: var(--color-white);
    text-decoration: none;
  }
  
  .btn--cta-large:hover::before {
    left: 100%;
  }
  
  .btn--cta-large i {
    font-size: var(--font-xl);
  }
  
  .cta-note {
    margin-top: 0;
    font-size: var(--font-sm);
    color: var(--color-secondary);
    font-weight: 500;
  }
  
  /* ===== レスポンシブ対応 ===== */
  @media (min-width: 768px) {
    .hero__image {
      height: 360px;
    }
    
    .hero__content h1 {
      font-size: var(--font-4xl);
    }
    
    .hero__content .lead {
      font-size: var(--font-xl);
    }
    
    .card-grid {
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
  }
  
  @media (min-width: 1200px) {
    .hero__image {
      height: 450px;
    }
    
    .hero__content {
      padding: var(--space-2xl);
    }
    
    .hero__content h1 {
      font-size: var(--font-5xl);
    }
  }
  
  @media (max-width: 1024px) {
    .cta-content {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
      text-align: center;
    }
    
    .cta-text-area {
      padding-right: 0;
    }
    
    .cta-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .check-sections {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hero__image {
      height: 250px;
    }
    
    .hero__content {
      padding: var(--space-lg);
    }
    
    .hero__content h1 {
      font-size: var(--font-2xl);
    }
    
    .hero__content .lead {
      font-size: var(--font-md);
    }
    
    .card-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: var(--space-md);
    }
    
    .card img {
      height: 180px;
    }
    
    .card-body {
      padding: var(--space-sm);
    }
    
    .card-title {
      font-size: var(--font-md);
    }
    
    .material-grid {
      grid-template-columns: 1fr;
    }
    
    .guide-grid {
      grid-template-columns: 1fr;
    }
    
    .check-branches {
      grid-template-columns: 1fr;
    }
    
    .reference-row {
      grid-template-columns: 1fr;
      gap: var(--space-sm);
      text-align: center;
    }
    
    .reference-arrow {
      transform: rotate(90deg);
      font-size: var(--font-xl);
    }
    
    .reference-condition,
    .reference-spec {
      font-size: var(--font-sm);
    }
    
    .cta-section-guide {
      padding: var(--space-2xl) 0;
    }
    
    .cta-title {
      font-size: var(--font-2xl);
    }
    
    .cta-description {
      font-size: var(--font-md);
    }
    
    .cta-button-area {
      padding: var(--space-lg);
    }
    
    .btn--cta-large {
      padding: var(--space-md) var(--space-xl);
      font-size: var(--font-md);
      width: 100%;
      max-width: 320px;
    }
  }
  
  @media (max-width: 576px) {
    .cta-section-guide::before {
      width: 60%;
      right: -30%;
    }
    
    .hero__image {
      height: 200px;
    }
    
    .hero__content {
      padding: var(--space-md);
    }
    
    .hero__content h1 {
      font-size: var(--font-xl);
    }
    
    .hero__content .lead {
      font-size: var(--font-sm);
    }
    
    .card-grid {
      grid-template-columns: 1fr;
      gap: var(--space-sm);
    }
    
    .card img {
      height: 160px;
    }
    
    .tags li {
      font-size: var(--font-xs);
      padding: 0.2rem 0.6rem;
    }
    
    .cta-title {
      font-size: var(--font-xl);
    }
    
    .cta-description {
      font-size: var(--font-sm);
    }
    
    .cta-button-area {
      padding: var(--space-md);
      border-radius: 12px;
    }
    
    .btn--cta-large {
      padding: var(--space-sm) var(--space-lg);
      font-size: var(--font-sm);
      border-radius: 40px;
    }
    
    .btn--cta-large i {
      font-size: var(--font-lg);
    }
  }
  
  /* ===== アクセシビリティ対応 ===== */
  .visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
  
  .card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }
  
  summary:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }
  
  .btn--cta-large:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }