* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    line-height: 1.6;
    color: #2c2c54;
    padding: 2rem;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit; 
}

a:visited {
    color: inherit; 
}

a:hover {
    background-color: #ececec;
}

a:focus {
    outline: 1px dashed #2c2c54; 
}

.container { 
    max-width: 600px;
    padding-top: 8%;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-header p {
    color: #474787;
    font-size: 20px;
}

.profile-title h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: #474787;
    font-weight: 400;
}

.profile-title p {
    color: #474787;
}

.profile-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.profile-desc {
    margin-bottom: 1.3rem;
    color: #2c2c54;
    font-size: 16px;
}

.note {
    margin-bottom: 2.5rem;
    color: #2c2c54;
    font-size: 16px;
}

.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: .9rem;
    margin-bottom: .8rem;
    font-weight: 500;
}

.section-title, .content-para {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .5rem;
}

.case-study, .content-para {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: 1rem;
}

.icon-img {
    max-width: 20px;
    max-height: 24px;
    height: auto;
    flex-shrink: 0;
    margin-top: 2px;
}

.content-title {
    font-weight: 400;
    color: #474787;
}

.content-links {
    color: #474787;
    font-weight: 600;
}

.empty-section {
    height: 100px;
    background: #ececec;
    border-radius: 8px;
}

.atkinson-hyperlegible-regular {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.atkinson-hyperlegible-bold {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.atkinson-hyperlegible-regular-italic {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.atkinson-hyperlegible-bold-italic {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 640px) {
    body {
        padding: 1rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .case-study, .content-item {
        align-items: flex-start;
    }
}