.story-section {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 10px;
    border-radius: var(--theme-border-radius);
    background-color: var(--theme-component-color-secondary-25);
    box-sizing: border-box;
    justify-content: space-around;
    border: 1px solid var(--theme-component-color-secondary-50);
}

.story-section-icon {
    height: 40px;
    width: 40px;
}

.story-section-icon-container {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px;
    border-radius: 50%;
    /*border: 1px solid var(--theme-component-color-primary-50);*/
    background: var(--theme-component-color-primary-25);
}

.story-section-story-container {
    margin: 0;
}

.story-section-story-content {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);

    padding: 10px;
    margin: 10px;
    line-height: 1.3;
}

.story-section-story-content::before {
    content: "Dárková inspirace: ";
    font-weight: bold;
}

@media only screen and (max-width: 800px) {
    .story-section-story-content {
        font-size: var(--font-size-xl);
        padding: 5px;
        margin: 5px;
    }
    .story-section-icon-container {
        padding: 8px;
    }
    .story-section-icon {
        height: 30px;
        width: 30px;
    }
}