.ad-container {
    width: 300px;
    height: 250px;
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    overflow: hidden
}

.ad-container .label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f90;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px
}

.ad-container .headline {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000
}

.ad-container .description {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
    color: #555
}

.ad-container .image {
    width: 100%;
    height: 150px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px
}

.ad-container .cta {
    width: 80%;
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 8px 0;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700
}

.ad-container .cta:hover {
    background: #0056b3
}
