.site-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #202124;
    letter-spacing: 0.4px;
}

.card input[type="radio"]:checked + .card-body {
  border: 2px solid #007bff;
  box-shadow: 0 0 10px rgba(0,123,255,0.5);
  background-color: #f0f8ff;
}

.full-text {
    transition: all 0.3s ease-in-out;
    transform: scale(0.95);
    opacity: 0;
}

.full-text.show {
    transform: scale(1);
    opacity: 1;
}

.card-img-top {
    height: 12rem;     
    object-fit: cover;
    width: 24rem;
    border-radius: 0.5rem;
}

.blog-banner {
    width: 100%;
    height: 110vh;
    background-image: url("/images/glider.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.outlined-text {
    color: #fff;
    -webkit-text-stroke: 1.5px #000;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.45),
        0 0 2px rgba(0, 0, 0, 0.65);
}

.outlined-subtext {
    color: #fff;
    font-weight: 600;
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.85),
        0 0 3px rgba(0, 0, 0, 0.65);
}

.subtext-pill {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}