/* Story Container */
.story-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Story Header */
.story-header {
    text-align: center;
    margin-bottom: 20px;
}

.story-title {
    font-size: 28px;
    font-weight: bold;
    color: #2C2048;
}

.story-date {
    font-size: 14px;
    color: #6c757d;
}

/* Story Image */
.story-image {
    text-align: center;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

/* Story Content */
.story-content {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.story-description {
    font-weight: 600;
    margin-bottom: 15px;
}

.story-extended-content {
    font-size: 16px;
    color: #555;
}

.story-extended-content h2 {
    font-size: 22px;
    color: #2C2048;
    margin-top: 20px;
}

.story-extended-content p {
    margin-bottom: 15px;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 30px;
}

.btn-own {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2C2048;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-own:hover {
    background-color: #284b63;
}
