/* Cover */
.cs-cover {
  position: relative;
}

.cs-cover img {
  max-height: 200px;
}

.cs-menu-btn {
  position: absolute;
  right: 10px;
  top: 20px;
  border-radius: 8px;
  border: 2px solid #69728120;
}

/* Header */
.cs-header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  margin-top: -50px;

}

.cs-header .cs-profile-img {
  position: relative;
}

.cs-header .cs-profile-img .tick-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
}

.cs-header .cs-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* border: 5px solid #fff; */
}

.cs-header .content {
  position: relative;
  flex: 1;
  padding-top: 20px;
}



.cs-header-info h1 {
  margin: 0;
  font-size: 26px;
}

.cs-menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 65px;
}

.cs-edit-btn {
  background-color: #F7FBFF;
  padding: 8px 16px;
  border-style: solid;
  border-color: #6babef;
  border-radius: 8px;
}

.divider {
  height: 1px;
  background-color: #153B6226;
  margin: 0 0 20px 0;
}

/* Layout */
.about-content {
  padding: 30px;
}

.cs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cs-block {
  margin-bottom: 30px;
}

.cs-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1A1A1A;
  margin: 0 0 5px 0;
}

.cs-right span {
  font-weight: 600;
  margin-right: 8px;
  display: block;
}

.cs-right p {
  margin-bottom: 20px;
}

.cs-right a {
  color: #007CFF;
  text-decoration: none;
  font-weight: 500;
}

/* Edit */
.cs-edit {
  display: none;
}

.cs-edit input,
.cs-edit textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
}

/* Articles & Resources Section */
.articles-resources {
  padding: 40px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.article-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.article-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.article-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 16px;
}

.article-read-more {
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}