.contentbutton-framed-box {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
}

.contentbutton-framed-content {
  display: grid;
  grid-template-columns: 10fr 2fr;
  align-items: center;
  gap: 20px;
}

.contentbutton-framed-text h3 {
  margin-top: 0;
}

.contentbutton-framed-button {
  text-align: right;
}

.contentbutton-framed-button button {
  background-color: #f59b10;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contentbutton-framed-button button:hover {
  background: #fff;
  color: #f59b10;
  border: 2px solid #f59b10;
}

/* Responsive Verhalten */
@media (max-width: 768px) {
  .contentbutton-framed-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contentbutton-framed-button {
    text-align: center;
  }
}
