/* instagram widget styling */
.slider-wrapper {
  position: relative;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  padding: 5px 8px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.custom-prev { 
    left: -40px; 
    border-top-left-radius: 5px; 
    border-bottom-left-radius: 5px;
}  
.custom-next { 
    right: -40px; 
    border-top-right-radius: 5px; 
    border-bottom-right-radius: 5px;
}

.custom-prev:hover, .custom-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.insta-image {
  width: 100%;     
  height: 300px;   
  object-fit: cover;    
  object-position: center; 
  border-radius: 10px;
}

.ig-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%; 
    justify-content: center;
    align-items: center;  
}

@media(max-width: 650px) {
    .custom-next {
        display: none;
    }
    .custom-prev {
        display: none;
    }
}

.question {
    color: red;
    font-size: 30px;
    text-decoration: bold;
}

:root {
  --text:#0f172a;
  --muted:#475569;
  --brand:#1e3a8a;
  --accent:#94a3b8;
  --radius:14px;
}

body {
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;
  color: var(--text);
  background: #fff;
}

.hero {
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(2,8,23,.08);
}

.card {
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(2,8,23,.06);
}

h1, h2 {
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(20px, 3.4vw, 28px);
}
p {
  margin: 14px 0;
}
ul {
  padding-left: 22px;
  margin: 14px 0;
}
ul li {
  margin-bottom: 16px;
  line-height: 1.6;
}
.hint {
  color: var(--muted);
  font-size: 14px;
}

.footer-link a {
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s;
}
.footer-link a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary {
    background-color: #763ebe !important;
    border-color: #763ebe !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #6937a9 !important;
    border-color: #6937a9 !important;
    color: #fff !important;
}
.bg-primary {
    background-color: #763ebe !important;
}