@charset "UTF-8";
/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

.theme-btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
}
.theme-btn-premium.btn-primary-gradient {
  background: linear-gradient(135deg, #2f443b 0%, rgb(26.1565217391, 37.8434782609, 32.8347826087) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(47, 68, 59, 0.3);
}
.theme-btn-premium.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 68, 59, 0.4);
  background: linear-gradient(135deg, rgb(57.4217391304, 83.0782608696, 72.0826086957) 0%, #2f443b 100%);
}
.theme-btn-premium.btn-primary-gradient:active {
  transform: translateY(0);
}
.theme-btn-premium.btn-outline {
  background: transparent;
  border: 2px solid #2f443b;
  color: #2f443b;
}
.theme-btn-premium.btn-outline:hover {
  background: #2f443b;
  color: #fff;
}

.author-auth-section {
  min-height: calc(100vh - 120px);
  display: flex;
  background: #f8fafc;
}
.author-auth-section .container-fluid,
.author-auth-section .row {
  flex: 1;
}
.author-auth-section .auth-content-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.author-auth-section .auth-visual-col {
  position: sticky;
  top: 0;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
}
.author-auth-section .auth-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.author-auth-section .auth-wrapper .auth-header {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.author-auth-section .auth-wrapper .auth-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.author-auth-section .auth-wrapper .auth-header .back-link img {
  width: 18px;
  transition: transform 0.3s ease;
}
.author-auth-section .auth-wrapper .auth-header .back-link:hover {
  color: #2f443b;
}
.author-auth-section .auth-wrapper .auth-header .back-link:hover img {
  transform: translateX(-4px);
}
.author-auth-section .auth-wrapper .auth-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  background: url("/images/article/page-map-bg.webp") no-repeat center center;
  background-size: cover;
}
.author-auth-section .auth-wrapper .auth-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.author-auth-section .auth-wrapper .auth-body .auth-form-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.author-auth-section .auth-wrapper .auth-body .auth-form-container.w-large {
  max-width: 650px;
}
.author-auth-section .auth-wrapper .auth-body .auth-form-container .auth-heading {
  margin-bottom: 30px;
  text-align: center;
}
.author-auth-section .auth-wrapper .auth-body .auth-form-container .auth-heading .main-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #2f443b;
  margin-bottom: 8px;
}
.author-auth-section .auth-wrapper .auth-body .auth-form-container .auth-heading .sub-title {
  color: #64748b;
  font-size: clamp(14px, 1.6vw, 16px);
}
.author-auth-section .form-group .form-label {
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
  display: block;
}
.author-auth-section .form-group .form-control {
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  padding: 0 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.author-auth-section .form-group .form-control:focus {
  border-color: #2f443b;
  box-shadow: 0 0 0 4px rgba(47, 68, 59, 0.1);
  outline: none;
}
.author-auth-section .form-group .form-control.is-invalid {
  border-color: #ef4444;
}
.author-auth-section .form-group .form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.author-auth-section .form-group .password-wrapper {
  position: relative;
}
.author-auth-section .form-group .password-wrapper .form-control {
  padding-right: 45px;
}
.author-auth-section .form-group .password-wrapper .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  padding: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.author-auth-section .form-group .password-wrapper .password-toggle:hover {
  color: #2f443b;
}
.author-auth-section .auth-footer-links {
  margin-top: 25px;
  text-align: center;
  color: #64748b;
  font-size: 15px;
}
.author-auth-section .auth-footer-links a {
  color: #2f443b;
  font-weight: 600;
  font-size: inherit;
  text-decoration: none;
  margin-left: 5px;
}
.author-auth-section .auth-footer-links a:hover {
  text-decoration: underline;
}
.author-auth-section .form-group label {
  text-transform: capitalize;
  font-size: clamp(12px, 1.4vw, 14px);
}
.author-auth-section .custom-checkbox .form-check-input {
  border-radius: 4px;
  border-color: #cbd5e1;
  cursor: pointer;
  width: clamp(13px, 1.4vw, 15px);
  height: clamp(13px, 1.4vw, 15px);
}
.author-auth-section .custom-checkbox .form-check-input:checked {
  background-color: #2f443b;
  border-color: #2f443b;
}
.author-auth-section .custom-checkbox .form-check-label {
  font-size: clamp(13px, 1.4vw, 14px);
  color: #64748b;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.author-auth-section .custom-checkbox .form-check-label a {
  font-size: inherit;
  color: #2f443b;
  text-decoration: none;
}
.author-auth-section .custom-checkbox .form-check-label a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .author-auth-section .auth-wrapper .auth-header {
    padding: 15px 20px;
  }
  .author-auth-section .auth-wrapper .auth-body {
    padding: 40px 15px;
  }
  .author-auth-section .auth-wrapper .auth-body .auth-form-container {
    padding: 30px 20px;
  }
}

.banner-visual-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 120px);
  overflow: hidden;
}
.banner-visual-wrapper .visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(47, 68, 59, 0.2), rgba(47, 68, 59, 0.6));
  z-index: 1;
}
.banner-visual-wrapper .banner-img,
.banner-visual-wrapper .banner-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-visual-wrapper .visual-quote {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: #fff;
  max-width: 500px;
}
.banner-visual-wrapper .visual-quote .quote-icon {
  font-size: 32px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.banner-visual-wrapper .visual-quote .quote-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
  font-style: italic;
}
.banner-visual-wrapper .visual-quote .quote-author {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.bg-linear {
  background: linear-gradient(135deg, #e0f7f7 0%, #ffffff 100%);
}

.message-note {
  font-size: clamp(12px, 1.6vw, 16px);
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  background: #bcffe1;
  border: 1.5px solid #7ff2c1;
  padding: 5px 10px;
}
.message-note p {
  font-size: inherit;
}

.thankyou-wrapper {
  max-width: 90%;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: thankyouFadeUp 0.7s ease-out forwards;
}
.thankyou-wrapper .tick-img {
  margin-bottom: 20px;
}
.thankyou-wrapper .tick-img img {
  width: 80px;
  height: 80px;
}
.thankyou-wrapper .small-heading {
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  color: #2f443b;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.thankyou-wrapper .thankyou-text {
  font-family: "Story Script", sans-serif;
  font-size: clamp(16px, 2.4vw, 24px);
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.thankyou-wrapper .dual-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.thankyou-wrapper .dual-btn .article-button {
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  transition: all 0.3s ease;
}
.thankyou-wrapper .dual-btn .article-button:hover {
  background: #fff;
  color: #000;
}
.thankyou-wrapper .dual-btn .article-button.alt {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
.thankyou-wrapper .dual-btn .article-button.alt:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 576px) {
  .thankyou-wrapper {
    max-width: 95%;
    padding: 20px;
  }
}

@keyframes thankyouFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.article-hero-section {
  padding: clamp(20px, 3vw, 40px) 0;
}
.article-hero-section .article-wrapper {
  display: grid;
  grid-template-columns: 6fr 3fr;
  gap: clamp(20px, 3.6vw, 36px);
}
.article-hero-section .article-wrapper .article-main {
  background: white;
  border-radius: 16px;
  padding: clamp(16px, 3vw, 30px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.article-hero-section .article-wrapper .article-main .article-hero-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .hero-badge-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .hero-badge-group .category-badge {
  background: rgba(192, 252, 253, 0.342);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #2f443b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgb(0, 70, 72);
  transition: all 0.3s ease;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .hero-badge-group .publish-date {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.3px;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .article-hero-title {
  font-size: clamp(22px, 3.8vw, 38px);
  font-weight: 700;
  color: #2f443b;
  line-height: 1;
  letter-spacing: 0.5px;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .article-hero-meta .reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}
.article-hero-section .article-wrapper .article-main .article-hero-content .article-hero-meta .reading-time i,
.article-hero-section .article-wrapper .article-main .article-hero-content .article-hero-meta .reading-time span {
  display: inline-block;
  font-size: inherit;
}
.article-hero-section .article-wrapper .article-main .article-hero-image {
  border: 2px solid rgba(238, 238, 238, 0.6235294118);
  margin-bottom: 16px;
}
.article-hero-section .article-wrapper .article-main .article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}
.article-hero-section .article-wrapper .article-main .article-hero-image .article-img-text {
  font-size: 12px;
  color: #777;
  background: #f8fafc;
  text-align: center;
  padding: 6px 6px;
}
.article-hero-section .article-wrapper .article-main .article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  word-break: break-word;
}
.article-hero-section .article-wrapper .article-main .article-content p {
  margin: 16px 0;
  text-align: justify;
}
.article-hero-section .article-wrapper .article-main .article-content ul {
  list-style: none;
  margin: 24px 0;
  padding-left: 0;
}
.article-hero-section .article-wrapper .article-main .article-content ul li {
  padding-left: 24px;
  position: relative;
  margin: 8px 0;
  color: #334155;
}
.article-hero-section .article-wrapper .article-main .article-content ul li:before {
  content: "\25B9";
  position: absolute;
  left: 0;
  font-size: 20px;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin-bottom: 30px;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block {
  display: flex;
  align-items: center;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn.active {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn .stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn .stat-text .stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-btn .stat-text .stat-count {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-display svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  color: #2f443b;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-display .stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-display .stat-text .stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .article-stats-group .stat-block .stat-display .stat-text .stat-count {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.article-hero-section .article-wrapper .article-main .article-footer-section .footer-content .share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2f443b 0%, #2f443b 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
@media (max-width: 991px) {
  .article-hero-section .article-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-sidebar .sidebar-card {
  background: white;
  border-radius: 16px;
  padding: clamp(16px, 3vw, 30px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.article-sidebar .sidebar-card .sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}
.article-sidebar .sidebar-card.sticky-top {
  position: sticky;
  top: 100px;
  z-index: -1;
}
.article-sidebar .author-card .author-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  margin-bottom: 16px;
}
.article-sidebar .author-card .author-head .author-img-wrap {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #2f443b;
  padding: 2px;
  flex-shrink: 0;
}
.article-sidebar .author-card .author-head .author-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.article-sidebar .author-card .author-head .author-info-wrap {
  display: flex;
  flex-direction: column;
}
.article-sidebar .author-card .author-head .author-info-wrap .author-title {
  font-size: 18px;
  font-weight: 700;
  color: #2f443b;
  line-height: 1.2;
  margin: 0;
  text-transform: capitalize;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.article-sidebar .author-card .author-head .author-info-wrap .author-title .badge-icon-wrap {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-sidebar .author-card .author-head .author-info-wrap .author-title .badge-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-sidebar .author-card .author-head .author-info-wrap .author-designation {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}
.article-sidebar .author-card .author-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.article-sidebar .author-card .author-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-sidebar .author-card .author-info .info-item .info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-sidebar .author-card .author-info .info-item .info-value {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}
.article-sidebar .author-card .article-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-sidebar .author-card .article-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-sidebar .author-card .article-info .info-item .info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-sidebar .author-card .article-info .info-item .info-value {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}
.article-sidebar .share-card .social-share {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.article-sidebar .share-card .social-share .social-btn {
  aspect-ratio: 1;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.article-sidebar .share-card .social-share .social-btn svg {
  width: 24px;
  height: 24px;
  fill: #64748b;
  transition: fill 0.3s ease;
}
.article-sidebar .share-card .social-share .social-btn:hover {
  background: linear-gradient(135deg, #2f443b 0%, #2f443b 100%);
  border-color: transparent;
}
.article-sidebar .share-card .social-share .social-btn:hover svg {
  fill: white;
}
@media (max-width: 768px) {
  .article-sidebar .share-card {
    display: none;
  }
}
.article-sidebar .view-profile-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #2f443b;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 70, 72, 0.2);
}

.author-profile-section {
  padding: 30px 0;
}
.author-profile-section .main-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.author-profile-section .main-wrapper .profile-info-wrap {
  position: relative;
  margin-bottom: 75px;
}
.author-profile-section .main-wrapper .profile-info-wrap .banner-wrap img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .main-wrapper .profile-info-wrap .profile-photo-wrap {
  position: absolute;
  bottom: -75px;
  left: 24px;
  width: 150px;
  height: 150px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-profile-section .main-wrapper .profile-info-wrap .profile-photo-wrap img {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .main-wrapper .profile-summary-wrap {
  padding: 24px;
}
.author-profile-section .main-wrapper .profile-summary-wrap .name-heading {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.author-profile-section .main-wrapper .profile-summary-wrap .name-heading .badge-icon-wrap {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-profile-section .main-wrapper .profile-summary-wrap .name-heading .badge-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.author-profile-section .main-wrapper .profile-summary-wrap .designation-title {
  font-size: 16px;
  display: inline-block;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 10px;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location i {
  font-size: 13px;
  color: #94a3b8;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location span .all-articles-link {
  color: #2f443b;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location span .all-articles-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location span .all-articles-link:hover {
  color: #006a6d;
}
.author-profile-section .main-wrapper .profile-summary-wrap .author-location span .all-articles-link:hover::after {
  transform: scaleX(1);
}
.author-profile-section .main-wrapper .nav-tabs {
  background-color: white;
  display: flex;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.author-profile-section .main-wrapper .nav-tabs .nav-item {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.author-profile-section .main-wrapper .nav-tabs .nav-item:hover {
  background: #f1f5f9;
}
.author-profile-section .main-wrapper .nav-tabs .nav-item.active {
  position: relative;
  background: linear-gradient(transparent, #f1f5f9);
  color: #2f443b;
}
.author-profile-section .main-wrapper .nav-tabs .nav-item.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #2f443b;
}
.author-profile-section .secondary-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.author-profile-section .secondary-wrapper .company-card {
  width: 200px;
  height: -moz-max-content;
  height: max-content;
  padding: 15px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.author-profile-section .secondary-wrapper .company-card .logo-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: #111827;
  overflow: hidden;
}
.author-profile-section .secondary-wrapper .company-card .logo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .secondary-wrapper .company-card .company-name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  text-transform: capitalize;
  margin: 0 auto 6px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.author-profile-section .secondary-wrapper .company-card .company-name .badge-icon-wrap {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-profile-section .secondary-wrapper .company-card .company-name .badge-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.author-profile-section .secondary-wrapper .company-card .followers-count {
  font-size: 14px;
  color: #6b7280;
}
.author-profile-section .secondary-wrapper .tab-container {
  padding: 15px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 10px;
}
.author-profile-section .secondary-wrapper .tab-container .tab {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.author-profile-section .secondary-wrapper .tab-container .tab.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .author-profile-section .secondary-wrapper {
    grid-template-columns: 1fr;
  }
  .author-profile-section .secondary-wrapper .company-card {
    display: none;
  }
}
.author-profile-section .profile-section-box .section-heading {
  font-size: 20px;
  font-weight: 600;
  color: #191919;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.author-profile-section .profile-section-box .filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.author-profile-section .profile-section-box .filter-tabs .tab-btn {
  padding: 5px 10px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.author-profile-section .profile-section-box .filter-tabs .tab-btn.active {
  background: #2f443b;
  color: white;
  border-color: #2f443b;
}
.author-profile-section .article-section-box .article-post-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.author-profile-section .article-section-box .article-post-card:not(:last-child) {
  margin-bottom: 15px;
}
.author-profile-section .article-section-box .article-post-card .post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-header-info h2 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 2px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-header-info h2 .badge-icon-wrap {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-header-info h2 .badge-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.author-profile-section .article-section-box .article-post-card .post-header .post-header-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 0;
}
.author-profile-section .article-section-box .article-post-card .post-content {
  margin-bottom: 14px;
}
.author-profile-section .article-section-box .article-post-card .post-content .article-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: #2f443b;
  line-height: 1.2;
  margin-bottom: 6px;
}
.author-profile-section .article-section-box .article-post-card .post-content .article-title a {
  font-size: inherit;
  color: inherit;
}
.author-profile-section .article-section-box .article-post-card .post-content p {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 8px;
}
.author-profile-section .article-section-box .article-post-card .post-content p:last-child {
  margin-bottom: 0;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text h2 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: #2f443b;
  line-height: 1.2;
  margin-bottom: 6px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text h3 {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 6px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text h4 {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 500;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 5px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text h5 {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  color: #374151;
  line-height: 1.3;
  margin-bottom: 4px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text h6 {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 4px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .full-text p {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .read-more-btn,
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .read-less-btn {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2f443b;
  text-decoration: none;
  transition: color 0.25s ease;
}
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .read-more-btn:hover,
.author-profile-section .article-section-box .article-post-card .post-content .excerpt-wrapper .excerpt-text .read-less-btn:hover {
  color: #4a6b5a;
  text-decoration: underline;
}
.author-profile-section .article-section-box .article-post-card .post-image {
  margin: 12px 0 16px;
  border-radius: 10px;
  overflow: hidden;
}
.author-profile-section .article-section-box .article-post-card .post-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .article-section-box .article-post-card .post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}
.author-profile-section .article-section-box .article-post-card .post-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  min-width: 90px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
}
.author-profile-section .article-section-box .article-post-card .post-actions button i {
  font-size: 15px;
}
.author-profile-section .article-section-box .article-post-card .post-actions button:hover {
  background: #f1f5f9;
}
.author-profile-section .article-section-box .article-post-card .post-actions button .btn-text {
  font-size: 13px;
  color: #64748b;
}
.author-profile-section .article-section-box .article-post-card .post-actions button .like-count {
  font-size: 13px;
  color: #64748b;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.like-btn:hover {
  color: #dc2626;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.like-btn:hover .heart-icon {
  color: #dc2626;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.like-btn.active {
  color: #dc2626;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.like-btn.active .heart-icon {
  font-weight: 900;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.send-btn:hover {
  color: #2f443b;
}
.author-profile-section .article-section-box .article-post-card .post-actions button.send-btn:hover .send-icon {
  color: #2f443b;
}
.author-profile-section .author-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.author-profile-section .author-sidebar .sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.author-profile-section .author-sidebar .sidebar-card .sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.author-profile-section .author-sidebar .stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.author-profile-section .author-sidebar .stats-list .stat-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.author-profile-section .author-sidebar .stats-list .stat-item-row .stat-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}
.author-profile-section .author-sidebar .stats-list .stat-item-row .stat-label-wrap i {
  width: 16px;
  color: #2f443b;
}
.author-profile-section .author-sidebar .stats-list .stat-item-row .stat-value {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}
.author-profile-section .author-sidebar .popular-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-thumb {
  width: 60px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-info .item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  text-decoration: none;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-info .item-title:hover {
  color: #2f443b;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-info .item-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.author-profile-section .author-sidebar .popular-items-list .pop-item .item-info .item-meta i {
  color: #ef4444;
  font-size: 10px;
}
.author-profile-section .author-sidebar .author-suggestions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .mini-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .author-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .author-details .author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .author-details .author-stats {
  font-size: 12px;
  color: #64748b;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .author-details .mini-profile-btn {
  font-size: 12px;
  color: #2f443b;
  font-weight: 600;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.author-profile-section .author-sidebar .author-suggestions .suggested-author-item .author-details .mini-profile-btn:hover {
  text-decoration: underline;
}
.author-profile-section .author-sidebar .social-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s;
  font-size: 16px;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn:hover {
  transform: translateY(-3px);
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn.facebook {
  background: #1877f2;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn.twitter {
  background: #1da1f2;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn.linkedin {
  background: #0a66c2;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn.instagram {
  background: #e4405f;
}
.author-profile-section .author-sidebar .social-icon-grid .social-link-btn.youtube {
  background: #ff0000;
}
@media (max-width: 991px) {
  .author-profile-section .main-wrapper .profile-info-wrap .banner-wrap img {
    height: 180px;
  }
  .author-profile-section .main-wrapper .profile-info-wrap .profile-photo-wrap {
    width: 120px;
    height: 120px;
    bottom: -60px;
  }
}
@media (max-width: 576px) {
  .author-profile-section .main-wrapper .profile-info-wrap {
    margin-bottom: 50px;
  }
  .author-profile-section .main-wrapper .profile-info-wrap .banner-wrap img {
    height: 140px;
  }
  .author-profile-section .main-wrapper .profile-info-wrap .profile-photo-wrap {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: 15px;
  }
  .author-profile-section .main-wrapper .profile-summary-wrap {
    padding: 15px;
  }
}