/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Attribute Profile Styles - CSS Grid Layout */
.wd-attribute-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 30px;
  row-gap: 0;
  margin-top: 20px;
  align-items: start;
}

.wd-attribute-profile-image {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.wd-attribute-profile-image .wd-profile-img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.wd-attribute-profile-content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.wd-attribute-profile-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #2c2c2c;
  line-height: 1.3;
}

.wd-attribute-profile-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wd-attribute-profile-description p {
  margin: 0 0 12px 0;
}

.wd-attribute-profile-description p:last-child {
  margin-bottom: 0;
}

.wd-attribute-total-books {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.wd-attribute-total-books strong {
  font-weight: 600;
  color: #2c2c2c;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .wd-attribute-profile {
    gap: 25px;
  }

  .wd-attribute-profile-image .wd-profile-img {
    width: 130px !important;
    height: 130px !important;
  }

  .wd-attribute-profile-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .wd-attribute-profile {
    gap: 20px;
  }

  .wd-attribute-profile-image .wd-profile-img {
    width: 120px !important;
    height: 120px !important;
  }

  .wd-attribute-profile-title {
    font-size: 22px;
  }

  .wd-attribute-profile-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wd-attribute-profile {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .wd-attribute-profile-image {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
    text-align: center;
    justify-self: center;
  }

  .wd-attribute-profile-image .wd-profile-img {
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .wd-attribute-profile-content {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .wd-attribute-profile-title {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .wd-attribute-profile-description {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .wd-attribute-profile-description p {
    text-align: center;
  }

  .wd-attribute-total-books {
    text-align: center;
    width: 100%;
  }
}

/* Admin Styles for Term Edit Page */
.wd-profile-image-upload {
  margin: 10px 0;
}

.wd-profile-image-preview {
  max-width: 150px;
  height: auto;
  margin: 10px 0;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
}

.wd-upload-profile-image,
.wd-remove-profile-image {
  margin-right: 10px;
}
