    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #f9f8f5;
      color: #1a1a1a;
      padding: 2rem 1rem 4rem;
    }

    .article-wrap {
      max-width: 900px;
      margin: 0 auto;
      background: #ffffff;
      border: 0.5px solid #e0ddd6;
      border-radius: 18px;
      padding: 3rem 3.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      background: #F28C38;
      color: #ffffff;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 1rem;
    }

    .meta {
      font-size: 13px;
      color: #666;
      display: flex;
      gap: 0.5rem;
      align-items: center;
      margin-bottom: 1.25rem;
      flex-wrap: wrap;
    }

    .meta span + span::before {
      content: '\00b7';
      margin-right: 0.5rem;
    }

    h1 {
      font-family: 'Lora', serif;
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 1.2;
      color: #17213c;
      margin-bottom: 1rem;
    }

    .subtitle {
      font-size: 1.1rem;
      color: #4f5f7d;
      line-height: 1.7;
      border-left: 4px solid #F28C38;
      padding-left: 1rem;
      margin-bottom: 2rem;
    }

    hr {
      border: none;
      border-top: 0.5px solid #ddd;
      margin: 2rem 0;
    }

    .body {
      font-family: 'Lora', serif;
      font-size: 17px;
      line-height: 1.85;
      color: #1a1a1a;
    }

    .body p {
      margin-bottom: 1.35rem;
    }

    .body h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #7d8596;
      margin: 2.5rem 0 0.75rem;
      padding-top: 1.4rem;
      border-top: 0.5px solid #e5e5e5;
    }

    .pullquote {
      margin: 2rem 0;
      padding: 1.2rem 1.4rem;
      background: #fff4ea;
      border-left: 4px solid #F28C38;
      border-radius: 0 10px 10px 0;
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: #7a3f12;
      line-height: 1.7;
    }

    .internship-profile {
      margin: 2rem 0 2.5rem;
    }

    .internship-profile h2 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #7d8596;
      margin-bottom: 1rem;
    }

    .profile-card {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 0.5px solid #dbe2ec;
      border-radius: 16px;
      background: #dbe2ec;
    }

    .profile-item {
      min-height: 130px;
      padding: 1.35rem;
      background: #f4f8fc;
    }

    .profile-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0C447C;
      margin-bottom: 0.5rem;
    }

    .profile-value {
      display: block;
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      line-height: 1.55;
      color: #17213c;
    }

    .profile-caption {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
      margin-top: 0.9rem;
    }

    .article-footer {
      margin-top: 3rem;
      padding-top: 1.25rem;
      border-top: 0.5px solid #ddd;
      font-size: 13px;
      color: #888;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .article-footer .author {
      font-weight: 700;
      color: #1a1a1a;
    }

    .back-to-news {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
    }

    .back-to-news a {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #0C447C;
      text-decoration: none;
      background: #E6F1FB;
      padding: 10px 16px;
      border-radius: 999px;
    }

    .back-to-news a:hover,
    .back-to-news a:focus-visible {
      background: #d5e8f8;
    }

    .back-to-news a:focus-visible {
      outline: 3px solid #F28C38;
      outline-offset: 3px;
    }

    @media (max-width: 900px) {
      .article-wrap {
        padding: 2.5rem 2rem;
      }
    }

    @media (max-width: 768px) {
      body {
        padding: 1rem 0.75rem 3rem;
      }

      .article-wrap {
        padding: 2rem 1.25rem;
      }

      h1 {
        font-size: 2rem;
      }

      .body {
        font-size: 16px;
      }
    }

    @media (max-width: 560px) {
      h1 {
        font-size: 1.75rem;
      }

      .subtitle {
        font-size: 1rem;
      }

      .profile-card {
        grid-template-columns: 1fr;
      }

      .profile-item {
        min-height: auto;
      }
    }