.modal-header .close svg {
    width: 25px;
    height: 25px;
}
.modal-header .close {
    top: 10px;
    right: 10px;
    padding: 0;
    background: none;
    border: none;
}
.gen-container {
    max-width: 928px;
    margin: 0 auto;
    padding: 0 16px;
}

.gen-title {
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 700;
    color: #000;
    margin: 25px 0 30px;
}

.gen-attr-groups {
    margin-bottom: 30px;
}

.gen-group-name {
    font-size: 3rem;
    line-height: 4rem;
    color: #000;
    margin-top: 25px;
    margin-bottom: 30px;
    font-weight: 700;
}

.gen-attribute {
    display: flex;
    align-items: center;
	padding: 24px 16px;
    position: relative;
}

.gen-attribute:nth-child(2n) {
    background: #f7fafd;
}

.gen-attr-name {
    flex: 1;
    position: relative;
    line-height: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gen-attr-name span {
    position: relative;
    z-index: 2;
    padding-right: 8px;
	font-size: 1.6rem;
}

.gen-attr-name span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-bottom: 1px dotted #ccc;
    width: calc(100vw - 928px / 2);
    z-index: 1;
}

.gen-attr-text {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #000;
    font-weight: 700;
    z-index: 3;
    padding-left: 8px;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 50%;
    margin-left: auto;
}

.gen-show-more {
    text-align: center;
    margin: 30px 0;
}

.gen-btn-show {
  background: #00A8E8;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gen-btn-show:hover {
  background: #1f4c5b;
}

.gen-btn-show:active,
.gen-btn-show:focus,
.gen-btn-show.gen-ath {
  background: #1b3f4b;
  outline: none;
}

.gen-btn-show:hover {
    background: #5f7781;
}

.gen-attr-groups.gen-hidden {
    display: none;
}

.gen-attr-groups.gen-hidden.gen-visible {
    display: block;
}

.gen-btn-show .gen-text-hide {
    display: none;
}

.gen-btn-show.gen-ath .gen-text-show {
    display: none;
}

.gen-btn-show.gen-ath .gen-text-hide {
    display: inline;
}

@media (max-width: 768px) {
  .gen-attribute {
    display: flex;
    flex-direction: row;              
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    flex-wrap: wrap;
}


  .gen-attr-name,
  .gen-attr-text {
    position: relative;
    z-index: 2;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .gen-attr-name {
    flex: 1 1 46%;
    text-align: left;
    padding-right: 5px;
  }

  .gen-attr-text {
    flex: 1 1 46%;
    text-align: right;
    padding-left: 5px;
  }
}

.gen-desc,
.gen-attributes-groups {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.gen-desc h2,
.gen-desc h3,
.gen-attributes-groups h2,
.gen-attributes-groups h3 {
  text-align: center;
}

.gen-desc img,
.gen-attributes-groups img {
  display: block;
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}

.gen-desc p,
.gen-attributes-groups p {
  text-align: justify;
  margin-bottom: 15px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}