﻿
/* Post Card Styles */
.post-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    /* Adjust Card Hover Effect */
    .post-card:hover {
        transform: scale(1.03);
    }

/* Post Card Header Styles */
.post-card-header {
    position: relative;
}

/* Post Card Image Styles */
.post-card-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.post-card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-card-icon {
    color: #fff;
    font-size: 24px;
}

/* Post Card Footer Styles */
.post-card-footer {
    padding: 10px;
}

.post-card-header-content {
    margin-bottom: 10px;
}

.post-card-title {
    font-size: 18px;
    margin: 0;
}

.post-card-title-link {
    text-decoration: none;
    color: #333;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

    .post-card-title-link:hover {
        color: #cb9600db;
        text-decoration: none;
    }

.post-card-footer-content {
    margin-top: 10px;
}

.post-card-details {
    font-size: 14px;
}

.post-card-details-link {
    text-decoration: none;
    color: #cb9600db;
}

    .post-card-details-link:hover {
        text-decoration: none;
    }

.offer-details {
    font-size: 16px;
}

.btnofferdetail {
    background-color: var(--global-color);
    width: 100%;
    padding: 15px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: white;
    text-align: center;
    border: none;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease; /* Smooth transitions */
    cursor: pointer;
}

    .btnofferdetail:hover {
        background-color: white;
        color: var(--global-color);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
        border: 1px solid var(--global-color);
        text-decoration: none;
    }
