/* Single Show  */
.inner-content {
    padding: 10px;
    width: 90%;
    margin: auto;
    margin-top: 25px;
}

@media (max-width: 480px) {
    .inner-content {
        padding: 10px;
        width: 100%;
    }
}
.inner-content .post-title {
    border-bottom: 1px solid black;
    position: relative;
    margin-bottom: 10px;
    padding: 0 10px;
}
.card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.hero .card-image img {
    height: 300px;
}

.inner-content .post-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: black;
}
.inner-content .post-title h3 {
    font-size: 32px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.post-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.post-meta {
    font-size: 14px;
}
.post-meta span {
    display: block;
}
.last-updated {
    font-style: italic;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}
.post-body {
    font-size: 16px;
    line-height: 1.6;
}
.bold {
    font-weight: bold;
}
.social-icons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}
.icon-btn {
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.post-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step {
    margin-bottom: 10px;
    line-height: 1.6;
}
.tip {
    margin-top: 15px;
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 4px solid #00a478;
}
.credit {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    text-align: right;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.offers-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.offers-title {
    font-weight: bold;
    font-size: 1.05em;
    color: #222;
}

.offers-location {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    color: #444;
}

.offers-location i {
    margin-right: 5px;
    color: #444;
}

.offers-right {
    font-size: 0.9em;
    color: #007bff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.offers-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: calc((100% / 4) - 12px);
    text-align: center;
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-4px);
}

.offer-card img {
    width: 100%;
    display: block;
}

.offer-card .store-name {
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 5px;
}

.offer-card .date {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
}

.card-img-top {
    object-fit: cover;
}
.section-title {
    font-weight: bold;
    border-bottom: 2px solid #000;
    display: inline-block;
}
.card:hover .card-text {
    color: #dc3545;
}

.card {
    transition: all 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
