<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fp-grid-wrapper {
    width: 100%;
    padding: 2rem;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fp-card {
    perspective: 1000px;
    position: relative;
    height: 380px;
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
    margin:15px;    
}

h2.featured {display:none;}
.fp-featured h2.featured {
    display:block;
    position:absolute;
    top:-20px;
    left:-20px;
    border: 3px solid gold;
    border-radius: 8px;
    padding:5px;
    overflow: hidden;
    color:gold;
    background-color:black;
    font-size:12px;
}
.fp-featured {position:relative;}
.fp-featured .fp-front, .fp-featured .fp-back {
border: 3px solid #f7ba02;
    background-color: #f5fdff;
    background-image: url(https://www.transparenttextures.com/patterns/bright-squares.png);
}

.fp-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

.fp-card.flipped .fp-inner {
    transform: rotateY(180deg);
}

.fp-front, .fp-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: #fff;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color:#333;
}

.fp-front {
    z-index: 2;
}

.fp-back {
    transform: rotateY(180deg);
}

.fp-media iframe,
.fp-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.fp-title {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.fp-more, .fp-back-btn, .fp-full-article {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #060206;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    text-align:center;
    transition:all ease 0.3s;
}

.fp-more:hover, .fp-back-btn:hover, .fp-full-article:hover {
background:#0f877a;}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}</pre></body></html>