    
  .header-default .header-main .header-content-inner .branding .site-branding-logo img {
      max-width: 220px;
  }
  .contact-info p.logo-footer {
    max-width: 245px!important;
}
.vertical-tabs__panes,
.vertical-tabs,
.field--name-body .form-wrapper{
  display: none;
}
.breadcrumb-content-inner .breadcrumb-content-main{
  padding: 200px 15px 120px;
}
#footer {
  color: #abafb5;
  background:  #101433!important;
}
#footer .copyright { 
  background: #101433!important;
}  
.listings-full-1 .views-exposed-form .form-item {
    width: 50%;
    float: left;
    padding: 10px;
}
.views-exposed-form .form-actions{
    width: 100%;
    float: left;
    padding: 10px;
}
.listings-full-1 .views-exposed-form {
    border: 1px solid #cccccc !important;
    display: flex;
    padding: 20px;
}
.lt-page_filter-sidebar .view-content-wrapper .view-content-1,
  .lt-page_filter-sidebar .view-content-wrapper .view-content-2{
  flex: 0 0 100%;
  width: 100%;
}
.lt-page_filter-sidebar .view-content-wrapper {
  flex-direction: column;
}
.gva-listings-full-page .listing-category .listing-category{ 
    color: white;
}
.listing-block:hover .listing-category{
     color: black;
    
}
.select-registration-roles .fieldset-wrapper #edit-select-roles {
    background: none !important;
    padding: 0% !important;
}
form.user-form .form-email,
form.user-form .form-text {
    width: 100%;
}
.user-basic-info-wrap{
    background: rgb(240 243 246);
    padding: 15px;
}
.js .field--widget-paragraphs td {
    padding: 20px;
}

.multi-steps-label {
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
}
.multi-steps-label .step-label {
    display: inline-block;
    color: #000;
    background: #F0F3F6;
    padding: 7px 20px;
    margin-right: 5px;
}
.multi-steps-label .step-label.active {
    color: #fff;
    background: #F9A32C;
    padding: 7px 20px;
    margin-right: 5px;
}

/* ============================================
   LINKEDIN-STYLE PROFILE PAGE
   ============================================ */

/* CSS Variables */
:root {
  --profile-primary: #0a66c2;
  --profile-primary-dark: #004182;
  --profile-primary-light: #e8f4fd;
  --profile-secondary: #057642;
  --profile-bg: #f4f2ee;
  --profile-card-bg: #ffffff;
  --profile-text: #191919;
  --profile-text-secondary: #666666;
  --profile-border: #e0e0e0;
  --profile-radius: 8px;
  --profile-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
}

/* Main Container */
.linkedin-profile {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: var(--profile-bg);
}

/* ===== BANNER SECTION ===== */
.profile-banner {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #1b4d70;
  border-radius: var(--profile-radius) var(--profile-radius) 0 0;
}

.profile-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  border-radius: inherit;
}

.edit-banner-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  color: var(--profile-text);
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 2;
}

.edit-banner-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== PROFILE CARD ===== */
.profile-card {
  position: relative;
  background: var(--profile-card-bg);
  padding: 0 24px 24px;
  margin-top: -60px;
  border-radius: 0 0 var(--profile-radius) var(--profile-radius);
  box-shadow: var(--profile-shadow);
}

/* Profile Picture */
.profile-picture-wrapper {
  position: relative;
  width: 152px;
  height: 76px;
}

.profile-picture {
  position: absolute;
  top: -76px;
  left: 0;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 4px solid var(--profile-card-bg);
  overflow: hidden;
  background: var(--profile-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-photo-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--profile-primary);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 2;
}

.edit-photo-btn:hover {
  background: var(--profile-primary-dark);
  transform: scale(1.1);
}

/* Profile Info */
.profile-info {
  padding-top: 16px;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--profile-text);
  margin: 0;
  line-height: 1.3;
}

.edit-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--profile-primary);
  background: transparent;
  border: 1px solid var(--profile-primary);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.edit-profile-btn:hover {
  background: var(--profile-primary-light);
}

/* Role Badge */
.profile-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  margin-top: 8px;
}

.profile-role.freelancer {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.profile-role.client {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
}

.profile-role.member {
  background: var(--profile-bg);
  color: var(--profile-text-secondary);
}

/* Location & Member Since */
.profile-location,
.profile-member-since {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--profile-text-secondary);
  margin-top: 8px;
}

.profile-location svg,
.profile-member-since svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Action Buttons Wrapper */
.profile-actions-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Action Buttons */
.profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== PROFILE COMPLETION CIRCLE ===== */
.profile-completion-circle {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.progress-ring {
  transform: rotate(0deg);
}

.progress-ring-bg {
  opacity: 1;
}

.progress-ring-circle {
  transition: stroke-dashoffset 1s ease-in-out, stroke 0.3s ease;
  transform-origin: center;
}

.completion-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.completion-percentage {
  font-size: 28px;
  font-weight: 700;
  color: var(--profile-text);
  line-height: 1;
}

.completion-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--profile-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover effect for completion circle */
.profile-completion-circle:hover .progress-ring-circle {
  filter: brightness(1.1);
}

.profile-completion-circle:hover .completion-percentage {
  color: var(--profile-primary);
}

/* Complete state (100%) - Green */
.profile-completion-circle.complete .completion-percentage {
  color: #10b981;
}

.profile-completion-circle.complete .completion-label {
  color: #10b981;
  font-weight: 600;
}

.profile-completion-circle.complete:hover .completion-percentage {
  color: #059669;
}

/* Incomplete state - Orange */
.profile-completion-circle.incomplete .completion-percentage {
  color: #f59e0b;
}

.profile-completion-circle.incomplete .completion-label {
  color: #92400e;
}

.profile-completion-circle.incomplete:hover .completion-percentage {
  color: #d97706;
}

/* Checkmark for 100% completion */
.completion-checkmark {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--profile-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--profile-primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--profile-primary);
  border: 1px solid var(--profile-primary);
}

.btn-secondary:hover {
  background: var(--profile-primary-light);
  border-color: var(--profile-primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--profile-text-secondary);
  border: 1px solid var(--profile-border);
  padding: 8px 16px;
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--profile-bg);
  color: var(--profile-text);
}

/* ===== PROFILE SECTIONS ===== */
.profile-section {
  background: var(--profile-card-bg);
  border-radius: var(--profile-radius);
  padding: 24px;
  margin-top: 8px;
  box-shadow: var(--profile-shadow);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--profile-border);
}

.section-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--profile-text);
  margin: 0;
}

.section-header h2 svg {
  color: var(--profile-primary);
}

.edit-section-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--profile-text-secondary);
  background: transparent;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.edit-section-btn:hover {
  background: var(--profile-bg);
  color: var(--profile-text);
}
#field-experience-values thead{
  display: inline-block!important;
}
#field-experience-values thead tr th,
#field-experience-values thead tr{
  border: 0px!important;
}
.field--name-field-experience{
  background: none!important;
}
.section-content p {
  font-size: 15px;
  line-height: 24px;
  color: var(--profile-text);
  margin: 0;
  white-space: pre-line;
}

/* Empty Section State */
.empty-section {
  border: 2px dashed var(--profile-border);
  background: var(--profile-bg);
}

.empty-content {
  text-align: center;
  padding: 24px 0;
}

.empty-content p {
  color: var(--profile-text-secondary);
  margin-bottom: 16px;
}

/* Contact Section */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.contact-item:not(:last-child) {
  border-bottom: 1px solid var(--profile-border);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--profile-primary-light);
  border-radius: 50%;
  color: var(--profile-primary);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  color: var(--profile-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 15px;
  color: var(--profile-text);
  font-weight: 500;
}

/* Education Section */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.education-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--profile-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--profile-border);
  transition: all 0.2s ease;
}

.education-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--profile-primary);
}

.education-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--profile-primary-light) 0%, #dbeafe 100%);
  border-radius: 50%;
  color: var(--profile-primary);
  flex-shrink: 0;
}

.education-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.education-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--profile-text);
  line-height: 1.4;
}

/* ===== TAXONOMY TAGS STYLING ===== */
.taxonomy-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.taxonomy-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--profile-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--profile-border);
  transition: all 0.2s ease;
}

.taxonomy-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.taxonomy-tag svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Education Tags - Blue */
.education-tag {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
  color: #1e40af;
}

.education-tag svg {
  color: #3b82f6;
}

.education-tag:hover {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Employment Tags - Green */
.employment-tag {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #86efac;
  color: #166534;
}

.employment-tag svg {
  color: #22c55e;
}

.employment-tag:hover {
  border-color: #22c55e;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

/* Specialty Tags - Orange/Gold */
.specialty-tag {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fcd34d;
  color: #92400e;
}

.specialty-tag svg {
  color: #f59e0b;
}

.specialty-tag:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--profile-bg);
  border-radius: var(--profile-radius);
  transition: all 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--profile-primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--profile-text-secondary);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .linkedin-profile {
    margin: 0;
    border-radius: 0;
  }
  
  .profile-banner {
    height: 150px;
    border-radius: 0;
  }
  
  .profile-card {
    border-radius: 0;
    padding: 0 16px 20px;
  }
  
  .profile-picture-wrapper {
    width: 120px;
    height: 60px;
  }
  
  .profile-picture {
    width: 120px;
    height: 120px;
    top: -60px;
  }
  
  .profile-name {
    font-size: 20px;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .profile-actions-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .profile-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .profile-completion-circle {
    order: -1;
    margin-bottom: 16px;
  }
  
  .profile-section {
    border-radius: 0;
    margin-top: 4px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .profile-banner {
    height: 120px;
  }
  
  .profile-picture-wrapper {
    width: 100px;
    height: 50px;
  }
  
  .profile-picture {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}

/* ============================================
   MODERN LISTING CARDS
   ============================================ */

/* CSS Variables for Cards */
:root {
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
  --card-radius: 12px;
  --card-primary: #e91e63;
  --card-success: #22c55e;
  --card-danger: #ef4444;
  --card-text: #1f2937;
  --card-text-secondary: #6b7280;
}

/* Card Container */
.listing-card-modern {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.listing-card-modern:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

/* ===== IMAGE SECTION ===== */
.card-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.card-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  z-index: 2;
  opacity: 0;
}

.card-main-image[src] {
  opacity: 1;
}

.listing-card-modern:hover .card-main-image {
  transform: scale(1.05);
}

.card-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  overflow: hidden;
  z-index: 1;
}

.card-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}

.card-image-placeholder .placeholder-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.card-image-placeholder .placeholder-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 80%;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

/* Different gradient variations for visual variety */
.listing-card-modern:nth-child(2n) .card-image-placeholder {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.listing-card-modern:nth-child(3n) .card-image-placeholder {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.listing-card-modern:nth-child(4n) .card-image-placeholder {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.listing-card-modern:nth-child(5n) .card-image-placeholder {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.listing-card-modern:nth-child(6n) .card-image-placeholder {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

/* Badges */
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.featured-badge {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  backdrop-filter: blur(4px);
}

.discount-badge {
  background: var(--card-primary);
  color: #fff;
}

/* Favorite Button */
.card-favorite-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-favorite-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.card-favorite-btn .heart-icon {
  color: var(--card-primary);
  font-size: 20px;
}

.card-favorite-btn .favorite-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--card-text-secondary);
}

/* Media Preview Icons */
.card-media-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.media-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: var(--card-text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.media-icon:hover {
  background: #fff;
  transform: scale(1.1);
  color: var(--card-primary);
}

/* Author Badge */
.card-author-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.author-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--card-text);
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow Link */
.card-link-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: var(--card-text);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  opacity: 0;
  transform: translateX(-10px);
}

.listing-card-modern:hover .card-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-link-arrow:hover {
  background: var(--card-primary);
  color: #fff;
  transform: scale(1.1);
}

/* ===== CONTENT SECTION ===== */
.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta Row (Location & Price) */
.card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--card-text-secondary);
}

.card-location i {
  color: var(--card-primary);
  font-size: 14px;
}

.card-location .listing-location {
  display: inline;
}

.card-location .listing-location .icon {
  display: none;
}

.card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--card-text);
  letter-spacing: 1px;
}

.card-price .price-value {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Title */
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--card-text);
  margin: 0 0 10px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: var(--card-primary);
}

.verified-badge {
  color: var(--card-success);
  font-size: 18px;
  flex-shrink: 0;
}

/* Description */
.card-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--card-text-secondary);
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== FOOTER SECTION ===== */
.card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  margin-top: auto;
}

/* Rating Badge */
.card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border: 2px solid var(--card-success);
  border-radius: 6px;
  background: transparent;
}

.rating-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--card-success);
}

/* Category */
.card-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--card-text);
  flex: 1;
}

.card-category .listing-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 0;
  color: inherit;
}

.card-category .listing-category .icon {
  color: #9333ea;
  font-size: 16px;
}

.card-category .listing-category a {
  color: inherit;
  text-decoration: none;
}

/* Status */
.card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.card-status.status-open {
  background: rgba(34, 197, 94, 0.1);
  color: var(--card-success);
}

.card-status.status-closed {
  background: rgba(239, 68, 68, 0.1);
  color: var(--card-danger);
}

.card-status i {
  font-size: 12px;
}

/* ===== GRID LAYOUT ===== */
.view-listing-content .view-content,
.gva-listings-full-page .view-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Override old teaser_2 styles */
.listing-block.teaser_2 {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .card-image-wrapper {
    height: 200px;
  }
  
  .card-content {
    padding: 16px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .card-footer {
    flex-wrap: wrap;
  }
  
  .card-category {
    order: 1;
    flex-basis: 100%;
    margin-top: 8px;
  }
  
  .view-listing-content .view-content,
  .gva-listings-full-page .view-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card-image-wrapper {
    height: 180px;
  }
  
  .card-author-badge {
    padding: 4px 10px 4px 4px;
  }
  
  .author-avatar,
  .author-avatar-placeholder {
    width: 28px;
    height: 28px;
  }
  
  .author-name {
    font-size: 12px;
    max-width: 80px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-description {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}