/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

<!-- Sjálfbærni í framkvæmd — Gutenberg Custom HTML block -->

<style>
/* Breakout úr Blocksy container */
.dg-insights-wrap {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding: 5rem 0;
  background: #f4f4f2;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  overflow: hidden;
  box-sizing: border-box;
}
.dg-insights-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}
.dg-insights-title {
  text-align: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 3.5rem;
  line-height: 1.15;
  padding: 0 2rem;
}
.dg-insights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}
.dg-insights-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease;
  position: relative;
}
.dg-insights-card:last-child { border-right: none; }
.dg-insights-card:hover { background: #f9fbfc; }
.dg-insights-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #1D7A8A;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.dg-insights-card:hover::after { transform: scaleX(1); }

.dg-insights-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.dg-insights-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dg-ic-1 { background: #E8F4F7; }
.dg-ic-1 svg { stroke: #1D7A8A; }
.dg-ic-2 { background: #E2EBF5; }
.dg-ic-2 svg { stroke: #1A4B7A; }
.dg-ic-3 { background: #E5F2E5; }
.dg-ic-3 svg { stroke: #2E7D32; }
.dg-ic-4 { background: #F5EDE2; }
.dg-ic-4 svg { stroke: #8A6A1D; }
.dg-ic-5 { background: #E8E2F0; }
.dg-ic-5 svg { stroke: #5A3A7A; }

.dg-insights-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.dg-insights-card p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: #555;
}

@media (max-width: 1024px) {
  .dg-insights-grid { grid-template-columns: repeat(3, 1fr); }
  .dg-insights-card { border-bottom: 1px solid rgba(0,0,0,0.06); }
}
@media (max-width: 640px) {
  .dg-insights-grid { grid-template-columns: 1fr; }
  .dg-insights-title { font-size: 2rem; margin-bottom: 2.5rem; }
  .dg-insights-card { border-right: none; }
}
</style>