.fr-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .fr-container {
        flex-direction: row;
        align-items: center;
    }
    .fr-image-col {
        flex: 0 0 45%;
    }
    .fr-content-col {
        flex: 1;
    }
}
.fr-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.fr-meta {
    color: #777;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.fr-title {
    color: #266d66;
    font-size: 2.2rem;
    margin: 0 0 1rem;
    line-height: 1.2;
}
.fr-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.fr-btn-wrap {
    margin-top: 1.5rem;
}
.fr-btn {
    display: inline-block;
    background-color: #eb861d;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.fr-btn:hover {
    opacity: 0.9;
    color: #ffffff;
}