/* Make all cards the same height */
.equal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.equal-card .blog-img {
    flex-shrink: 0;
}
.equal-card .blog-text,
.equal-card .blog-author-more {
    flex-grow: 1;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    margin-right: 5px;
}
.new-price {
    color: #e74c3c;
    font-weight: bold;
}

#coming-soon-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

#coming-soon-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

#coming-soon-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#coming-soon-form input[type="text"]:focus {
    outline: none;
    border-color: #FF3838;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 92, 120, 0.2);
}

#coming-soon-form button {
    align-content: center;
    width: 80%;
    padding: 12px 20px;
    background: #FF3838;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

#coming-soon-form button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 92, 120, 0.3);
}

#coming-soon-form button:active {
    transform: translateY(0);
}

/* Make form responsive */
@media (max-width: 768px) {
    #coming-soon-form {
        max-width: 100%;
        padding: 0 15px;
    }
    
    #coming-soon-form input[type="text"],
    #coming-soon-form button {
        padding: 10px 15px;
        font-size: 13px;
    }
}











