* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-y: auto;
}

.widget {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 18px 18px;
}

h1 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.job {
  padding: 0 0 13px;
  margin: 0 0 13px;
  border-bottom: 1px solid #ddd;
}

.job:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.job-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.job-logo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.job-details {
  flex: 1 1 auto;
  min-width: 0;
}

.job-title {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #005cb9;
  text-decoration: none;
}

.job-title:hover,
.job-title:focus {
  text-decoration: underline;
}

.employer {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.3;
  color: #555;
}

.view-job {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #005cb9;
  text-decoration: underline;
}

.see-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #005cb9;
  text-decoration: none;
}

.see-more:hover,
.see-more:focus {
  text-decoration: underline;
}

.status,
.error {
  margin: 0;
  font-size: 16px;
  color: #666;
}

@media (max-width: 480px) {
  .widget {
    padding: 12px 14px 16px;
  }

  h1 {
    font-size: 18px;
  }

  .job-content {
    gap: 12px;
  }

  .job-logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .job-title {
    font-size: 15px;
  }

  .employer {
    font-size: 13px;
  }

  .see-more {
    font-size: 13px;
  }
}
