/* 
   Antonio Rutilio V5 Premium UI/UX Refinement
   Focused on Architectural Elegance, Glassmorphism, and Smooth Transitions
*/

:root {
    --ar-gold: #c5a47e;
    --ar-gold-light: #d4bc9a;
    --ar-dark: #0c0e0b;
    --ar-glass: rgba(255, 255, 255, 0.05);
    --ar-glass-border: rgba(255, 255, 255, 0.1);
}

/* Blog Two Refinement */
.blog-two__single {
    position: relative;
    border-top: 1px solid var(--ar-glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: transparent;
    padding-bottom: 20px;
}

.blog-two__single:hover {
    transform: translateY(-8px);
}

.blog-two__img {
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Subtle architectural radius */
}

.blog-two__img img {
    transition: transform 1.2s ease;
    filter: brightness(0.9);
}

.blog-two__single:hover .blog-two__img img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Premium Ghost Button */
.blog-two__btn {
    background: var(--ar-glass) !important;
    border: 1px solid var(--ar-gold) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 11px !important;
    padding: 12px 25px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.blog-two__btn:hover {
    background: var(--ar-gold) !important;
    color: #0c0e0b !important;
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.4) !important;
}

.blog-two__btn-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.blog-two__single:hover .blog-two__btn-box {
    opacity: 1;
    transform: translateY(0);
}

.blog-two__content {
    margin-top: 25px !important;
    padding: 0 !important;
    text-align: left;
}

.blog-two__title {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease;
}

.blog-two__single:hover .blog-two__title a {
    color: var(--ar-gold) !important;
}

/* Corrected Slider Nav (Diamonds) */
.owl-next, .owl-prev {
    background: var(--ar-glass) !important;
    border: 1px solid var(--ar-glass-border) !important;
    transition: all 0.3s ease !important;
}

.owl-next:hover, .owl-prev:hover {
    border-color: var(--ar-gold) !important;
    background: var(--ar-gold) !important;
}

/* Investment Progress Bar - V5 Safe Logic */
.investment-card .progress-container {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.investment-card .progress-bar {
    background: linear-gradient(90deg, #c0a172 0%, #e0c5a0 100%) !important;
    box-shadow: 0 0 10px rgba(192, 161, 114, 0.5);
}

.investment-card .financial-preview {
    border-top: 1px dashed rgba(255,255,255,0.05);
    padding-top: 15px;
}

/* V5 Over-subscribed Badge */
.oversubscribed-badge {
    animation: glow-gold 2s infinite alternate;
}

@keyframes glow-gold {
    0% { box-shadow: 0 4px 15px rgba(197, 164, 126, 0.4); }
    100% { box-shadow: 0 4px 25px rgba(197, 164, 126, 0.8); }
}

