/* Account page – matches developskriv.se/konto/ design */

.konto-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 0 auto;
}

/* ========================================
   Two-column header
   ======================================== */
.konto-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.konto-header-left {
  background: #5a8f8f;
  border-radius: 8px;
  padding: clamp(32px, 6vw, 48px);
  min-height: clamp(140px, 20vw, 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.konto-header-left h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.konto-header-left p {
  font-size: 15px;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.konto-header-right {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  min-height: clamp(140px, 20vw, 180px);
  padding: clamp(32px, 6vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.konto-header-right h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.konto-header-right p {
  font-size: 17px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.konto-help-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background-color: #003D4E;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.konto-help-btn:hover {
  background-color: #00506a;
  color: #fff;
}

/* ========================================
   Profile section
   ======================================== */
.konto-profile-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
}

.konto-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.konto-profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 40px 20px 40px;
}

.konto-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5a8f8f;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.konto-profile-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.konto-detail {
  padding: 4px 40px;
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

.konto-detail strong {
  color: #333;
}

/* Card footer with links */
.konto-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  margin-top: 20px;
  background: #f7f7f7;
  border-top: 1px solid #eee;
}

.konto-footer-link {
  font-size: 14px;
  color: #003D4E;
  text-decoration: none;
  font-weight: 400;
}

.konto-footer-link:hover {
  color: #00506a;
  text-decoration: underline;
}

.konto-footer-sep {
  color: #ccc;
  font-size: 14px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .konto-header {
    grid-template-columns: 1fr;
  }

  .konto-profile-info {
    padding: 20px 24px 16px 24px;
  }

  .konto-detail {
    padding: 4px 24px;
  }

  .konto-card-footer {
    padding: 16px 24px;
  }
}
