.verdict-block {
  width: 100%;
  font-family: Arial, sans-serif;
  border: 1px solid #e0e0e0;
}

.verdict-block .verdict-header {
  display: flex;
  align-items: center;
  padding: 20px;
}

.verdict-block .verdict-pros-heading,
.verdict-block .verdict-cons-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.verdict-block .verdict-score {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  margin-right: 1rem;
}

.verdict-block .score-rating {
  display: flex;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #ededed;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.verdict-block .score-description {
  display: flex;
  flex: 6;
  flex-direction: column;
}

.verdict-block .score-description .score-description-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 0.5rem 0;
}

.verdict-block .score-description p {
  margin: 0;
}

.verdict-block .score-value {
  font-size: 36px;
  font-weight: bold;
}

.verdict-block .score-text {
  color: #4caf50;
}

.verdict-block .visit-website {
  padding: 10px 20px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  border-radius: 0.5rem;
  white-space: nowrap;
  text-align: center;
  transition: all 0.6s ease;
  margin-top: 0.5rem;
}

.verdict-block .full-review {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  border-radius: 0.5rem;
  white-space: nowrap;
  text-align: center;
  transition: all 0.6s ease;
  margin-top: 0.5rem;
}

.verdict-block .verdict-details {
  padding: 20px;
  border-top: none;
  border-top: 1px solid #e0e0e0;
}

.verdict-block .detail-item {
  display: flex;
  justify-content: space-between;
}

.verdict-block .progress-bar {
  height: 10px;
  background-color: #e0e0e0;
  border: 1px solid #324a6d;
}

.verdict-block .progress-fill {
  height: 100%;
  background-color: #4caf50;
}

.verdict-block .verdict-pros {
  padding: 20px;
  background-color: #e8f5e9;
}

.verdict-block .pros-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.verdict-block .pros-icon {
  display: flex;
  margin-right: 10px;
}

.verdict-block .pros-icon svg {
  fill: #4caf50;
  width: 12px;
}

.verdict-block .verdict-cons {
  padding: 20px;
  background-color: #ffebee;
}

.verdict-block .cons-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.verdict-block .cons-icon {
  display: flex;
  margin-right: 10px;
}

.verdict-block .cons-icon svg {
  fill: #f44336;
  width: 12px;
}

.verdict-block .pros-cons-column {
  display: block;
  border-top: 1px solid #e0e0e0;
}

.verdict-block .pros-cons-column .verdict-pros {
  border-bottom: 1px solid #e0e0e0;
}

.verdict-block .pros-cons-row {
  display: flex;
  border-top: 1px solid #e0e0e0;
}

.verdict-block .pros-cons-row .verdict-pros {
  flex: 1;
  border-right: 1px solid #e0e0e0;
}

.verdict-block .pros-cons-row .verdict-cons {
  flex: 1;
}

@media (max-width: 768px) {
  .verdict-block .verdict-header {
    display: block;
  }

  .verdict-block .verdict-header .verdict-score {
    margin: 0 0 1rem 0;
  }

  .verdict-block .pros-cons-row {
    display: block;
    border-top: 1px solid #e0e0e0;
  }

  .verdict-block .pros-cons-row .verdict-pros {
    border-bottom: 1px solid #e0e0e0;
  }
}
