
.exp-container h1 {
    font-size: 2rem !important;
    font-weight: 800;
    text-align: center;
    color: #232946;
    margin-bottom: 32px;
    letter-spacing: .5px;
  }
.exp-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 24px;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(36,39,87,0.12);
  }
/*  h4 {
    text-align: center;
    color: #232946;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .5px;
  }*/
  .exp-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .exp-item {
    display: flex;
    margin-bottom: 32px;
    gap: 20px;
    align-items: flex-start;
  }
  .exp-date {
    min-width: 116px;
    font-weight: 600;
    color: #7367f0;
    margin-top: 5px;
  }
  .exp-details {
    flex: 1;
    background: #f2f4f8;
    border-radius: 1rem;
    padding: 18px 24px;
    box-sizing: border-box;
    box-shadow: 0 3px 12px rgba(115,103,240,0.06);
  }
  .exp-title {
    font-size: 1.14rem;
    font-weight: 600;
    color: #232946;
    margin-bottom: 3px;
  }
  .exp-title a {
    color: #2f80ed;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.18s;
  }
  .exp-title a:hover, .exp-title a:focus {
    color: #184bb7;
    text-decoration: underline wavy;
  }
  .exp-location {
    font-size: 0.97rem;
    color: #949ca9;
    margin-bottom: 10px;
  }
  .exp-duration {
    font-size: 0.96rem;
    color: #7367f0;
    margin-bottom: 8px;
  }
  .exp-missions {
    margin-bottom: 9px;
    padding-left: 18px;
  }
  .exp-missions li {
    margin-bottom: 5px;
    font-size: 0.98rem;
    color: #232946;
  }
  .exp-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .exp-skill {
    background: #2f80ed;
    color: #fff;
    border-radius: 16px;
    padding: 2.5px 14px;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: .2px;
    margin-top: 2px;
    text-decoration: none;
    border: none;
    transition: background 0.18s;
    display: inline-block;
  }
  .exp-skill:hover, .exp-skill:focus {
    background: #184bb7;
    color: #e5f2fd;
    text-decoration: underline;
  }
  @media (max-width: 600px) {
    .exp-container { padding: 12px 3px; }
    .exp-item { flex-direction: column; gap: 6px; }
    .exp-date { margin-bottom: 6px; }
    .exp-details { padding: 13px 12px; }
  }
