/* Digital Climbs Sidebar Widget v3.0 */

.dc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
}
.dc-card {
  border-radius: 12px;
  padding: 24px 20px;
}
.dc-card-light {
  background: #f4f6f9;
  border: 1px solid #dde2ea;
}
.dc-card-dark {
  background: #281949;
}
.dc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #281949;
  margin: 0 0 8px;
}
.dc-label-light {
  color: #e0c9f5;
}
.dc-body {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 20px;
}
.dc-body-light {
  color: #c9b8e8;
}
.dc-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dc-btn:hover {
  opacity: 0.88;
  text-decoration: none;
}
.dc-btn-dark {
  background: #281949;
  color: #ffffff;
}
.dc-btn-accent {
  background: #F5AD3A;
  color: #3d1f00;
  border: none;
  cursor: pointer;
  width: 100%;
}
.dc-btn-accent:hover {
  opacity: 0.88;
}
.dc-posts {
  display: flex;
  flex-direction: column;
}
.dc-post {
  display: block;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #dde2ea;
}
.dc-post-last {
  border-bottom: none;
  padding-bottom: 0;
}
.dc-post-title {
  font-size: 13px;
  font-weight: 500;
  color: #281949;
  margin: 0 0 4px;
  line-height: 1.4;
}
.dc-post:hover .dc-post-title {
  color: #F5AD3A;
}
.dc-read-more {
  font-size: 12px;
  color: #F5AD3A;
  font-weight: 600;
}
.dc-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dc-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9b8e8;
  background: #ffffff;
  color: #281949;
  font-size: 13px;
  outline: none;
}
.dc-input:focus {
  border-color: #F5AD3A;
}
.dc-input::placeholder {
  color: #9b8ab0;
}
.dc-msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 0;
  line-height: 1.5;
}
.dc-msg-success {
  background: #1a3a2a;
  color: #a8f0c6;
  border: 1px solid #2d6a47;
}
.dc-msg-error {
  background: #3a1a1a;
  color: #f5a0a0;
  border: 1px solid #6a2d2d;
}
