/* =========================================================
   GERÜCHTEKÜCHE – HAUPTANSICHT
   ========================================================= */

#gossip_overview {
    width: 100%;
    margin: 20px auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;

    color: #e1c9a6;
    background: #160d08;

    border: 1px solid #50321d;
    border-left: 4px solid #8c572a;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.30),
        inset 0 0 35px rgba(0, 0, 0, 0.18);
}

#gossip_overview *,
#gossip_overview *::before,
#gossip_overview *::after {
    box-sizing: border-box;
}


/* =========================================================
   SEITENÜBERSCHRIFT
   ========================================================= */

.gossip_main-headline {
    position: relative;
    width: 100%;
    min-height: 48px;
    padding: 13px 22px;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    color: #d6a363;

    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.92),
            rgba(36, 20, 12, 0.92)
        );

    border-bottom: 1px solid #68401f;

    font-family: Cinzel, Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.gossip_main-headline::after {
    content: "";
    height: 1px;
    flex: 1;
    margin-left: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(197, 139, 69, 0.55),
            transparent
        );
}

.gossip_main-headline span {
    display: block;
}


/* =========================================================
   SEITENINHALT
   ========================================================= */

.gossip_main-body {
    width: 100%;
    padding: 20px;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 10px,
            rgba(197, 139, 69, 0.012) 10px,
            rgba(197, 139, 69, 0.012) 11px
        ),
        #1a0f09;
}


/* =========================================================
   GERÜCHTE-GRID
   ========================================================= */

.gossip_flex {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;

    align-items: stretch;
}


/* =========================================================
   EINZELNES GERÜCHT
   ========================================================= */

.gossip_box {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 15px 17px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            105deg,
            rgba(197, 139, 69, 0.035),
            transparent 42%
        ),
        rgba(36, 20, 12, 0.82);

    border-top: 1px solid rgba(197, 139, 69, 0.20);
    border-right: 1px solid rgba(197, 139, 69, 0.12);
    border-bottom: 1px solid rgba(197, 139, 69, 0.20);
    border-left: 3px solid #98602d;

    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   BETEILIGTE FIGUREN
   ========================================================= */

.gossip_about {
    width: 100%;
    margin: 0 0 12px;
    padding: 0 0 9px;

    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;

    border-bottom: 1px solid rgba(197, 139, 69, 0.20);
}

.gossip_about-label {
    color: #8f7961;

    font-family: Georgia, serif;
    font-size: 10px;
    font-style: italic;
    line-height: 1.3;
}

.gossip_about-victims {
    min-width: 0;

    color: #c99a61;

    font-family: Cinzel, Georgia, serif;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gossip_about-victims a:link,
.gossip_about-victims a:visited,
.gossip_about-victims a:active {
    color: #c99a61;
}

.gossip_about-victims a:hover {
    color: #efd1a5;
}


/* =========================================================
   GERÜCHTETEXT
   ========================================================= */

.gossip_rumour {
    position: relative;
    width: 100%;
    min-height: 120px;
    height: auto;
    margin: 0;
    padding: 5px 6px 15px 35px;

    flex: 1;

    overflow: visible;

    color: #e0c6a1;

    border-bottom: 1px solid rgba(197, 139, 69, 0.20);
}

.gossip_rumour::before {
    content: "“";
    position: absolute;
    top: -6px;
    left: 0;

    color: #8c5a2d;

    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: normal;
    line-height: 1;
}

.gossip_rumour-text {
    width: 100%;

    color: #e0c6a1;

    font-family: Neu5land, Georgia, serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 170%;
    text-align: justify;
}

.gossip_rumour-text a:link,
.gossip_rumour-text a:visited,
.gossip_rumour-text a:active {
    color: #d7ac72;
}

.gossip_rumour-text a:hover {
    color: #f0d3a7;
}


/* =========================================================
   INFORMATIONEN
   ========================================================= */

.gossip_info {
    width: 100%;
    padding: 10px 5px 0 35px;

    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 3px 8px;

    color: #786552;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.6px;
    text-align: left;
    text-transform: uppercase;
}

.gossip_info-author {
    color: #9a8267;
}

.gossip_info-author a:link,
.gossip_info-author a:visited,
.gossip_info-author a:active {
    color: #c89c65;
}

.gossip_info-author a:hover {
    color: #eed0a4;
}

.gossip_info-date::before {
    content: "•";
    margin-right: 8px;
    color: #79512e;
}

.gossip_info-options {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 5px;
}

.gossip_info-options a:link,
.gossip_info-options a:visited,
.gossip_info-options a:active {
    display: inline-block;
    padding: 4px 6px;

    color: #a98966;
    background: #2c1a0f;

    border: 1px solid #51321d;

    font-family: Arial, sans-serif;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gossip_info-options a:hover {
    color: #160d08;
    background: #d1a267;
    border-color: #d1a267;
}


/* =========================================================
   HINWEISBOX
   ========================================================= */

.gossip_alert {
    width: 100%;
    margin-top: 16px;
}

.gossip_alert:empty {
    display: none;
}

.gossip_alert > * {
    margin: 0;
}


/* =========================================================
   FORMULAR
   ========================================================= */

.gossip_form {
    width: 100%;
    margin-top: 20px;
    padding: 0 18px 18px;

    color: #e1c9a6;
    background: rgba(28, 16, 10, 0.90);

    border: 1px solid #50321d;
    border-left: 3px solid #98602d;
}

.gossip_form-headline {
    position: relative;
    margin: 0 -18px 16px;
    padding: 11px 18px;

    display: flex;
    align-items: center;

    color: #c99559;
    background: rgba(58, 36, 22, 0.62);

    border-bottom: 1px solid #57361f;

    font-family: Cinzel, Georgia, serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.gossip_form-headline::after {
    content: "";
    height: 1px;
    flex: 1;
    margin-left: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(197, 139, 69, 0.45),
            transparent
        );
}


/* =========================================================
   FORMULARAUFTEILUNG
   ========================================================= */

.gossip_form .form_flex {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    align-items: start;
}

.gossip_form .form_box {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.gossip_form .gossip_form-text {
    grid-column: 1 / -1;
}


/* =========================================================
   FORMULARÜBERSCHRIFTEN
   ========================================================= */

.gossip_form .form_title {
    margin: 0;
    padding: 8px 10px;

    color: #b88750;
    background: rgba(58, 36, 22, 0.50);

    border: 1px solid #422919;
    border-bottom: 0;

    font-family: Cinzel, Georgia, serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
}


/* =========================================================
   FORMULARFELDER
   ========================================================= */

.gossip_form textarea,
.gossip_form input[type="text"],
.gossip_form input[type="date"],
.gossip_form select {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 8px 10px;

    color: #dbc4a6;
    background: #160d08;

    border: 1px solid #57361f;
    border-radius: 0;

    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.4;

    outline: none;
}

.gossip_form textarea {
    min-height: 110px;

    resize: vertical;

    font-family: Neu5land, Georgia, serif;
    font-size: 15px;
    line-height: 165%;
}

.gossip_form textarea::placeholder,
.gossip_form input::placeholder {
    color: #74604d;
}

.gossip_form textarea:focus,
.gossip_form input[type="text"]:focus,
.gossip_form input[type="date"]:focus,
.gossip_form select:focus {
    border-color: #9e6935;
}


/* =========================================================
   ABSENDEBUTTON
   ========================================================= */

.gossip_form .form_go {
    width: 100%;
    margin-top: 15px;
    text-align: right;
}

.gossip_form .form_go .button {
    min-height: auto;
    margin: 0;
    padding: 8px 14px;

    color: #d8af78;
    background: #2f1c10;

    border: 1px solid #70451f;
    border-radius: 0;

    font-family: Cinzel, Georgia, serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
}

.gossip_form .form_go .button:hover {
    color: #160d08;
    background: #d1a267;
    border-color: #d1a267;
}


/* =========================================================
   SELECT2
   ========================================================= */

.gossip_form .select2-container {
    width: 100% !important;
    max-width: 100%;
}

.gossip_form .select2-container .select2-choice,
.gossip_form .select2-container-multi .select2-choices {
    min-height: 35px;
    margin: 0;
    padding: 3px 7px;

    color: #dbc4a6;
    background: #160d08;

    border: 1px solid #57361f;
    border-radius: 0;
    box-shadow: none;
}

.gossip_form .select2-container-multi .select2-choices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.gossip_form .select2-container-multi .select2-choices .select2-search-choice {
    margin: 2px;
    padding: 5px 7px 5px 18px;

    color: #d9bd98;
    background: #342013;

    border: 1px solid #68401f;
    border-radius: 0;
    box-shadow: none;
}

.gossip_form .select2-container-multi .select2-choices .select2-search-field input {
    color: #dbc4a6 !important;
    background: transparent !important;
}


/* =========================================================
   BEARBEITUNGSFORMULAR
   ========================================================= */

.gossip_form-edit {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 800px) {

    .gossip_flex {
        grid-template-columns: 1fr;
    }

    .gossip_form .form_flex {
        grid-template-columns: 1fr;
    }

    .gossip_form .gossip_form-text {
        grid-column: auto;
    }

}

@media screen and (max-width: 520px) {

    .gossip_main-body {
        padding: 13px;
    }

    .gossip_main-headline {
        padding: 12px 15px;

        font-size: 12px;
        letter-spacing: 1.7px;
    }

    .gossip_box {
        padding: 13px;
    }

    .gossip_rumour {
        min-height: 0;
        padding-left: 29px;
    }

    .gossip_rumour::before {
        font-size: 35px;
    }

    .gossip_rumour-text {
        font-size: 14px;
        line-height: 160%;
        text-align: left;
    }

    .gossip_info {
        padding-left: 29px;

        display: block;
    }

    .gossip_info-date {
        margin-top: 3px;
    }

    .gossip_info-date::before {
        display: none;
    }

    .gossip_info-options {
        margin-top: 8px;
    }

    .gossip_form {
        padding-right: 12px;
        padding-left: 12px;
    }

    .gossip_form-headline {
        margin-right: -12px;
        margin-left: -12px;
    }

}


/*modcp*/

.new_gossip{
	margin: 10px;
	width: 98%;
}

.gossip_about{
	text-align: center;
	font-size: 12px;
	color: #d5b48d;
}

.gossip_victims{
	font-size: 14px;
	text-align: center;
	color: #e7cfad;
}

.gossip_gossipbox{
	padding: 5px;
	box-sizing: border-box;
}

.gossip_from{
	text-align: center;
	font-size: 10x;
	color: #b7834f;
}

.gossip_modcp_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.gossip_option{
	margin: 5px 10px;
	padding: 2px;
	text-align: center;
} 


/* =========================================================
   GERÜCHTEKÜCHE – INDEX
   PASSEND ZU DEN INPLAYQUOTES
   ========================================================= */

.gossip_box2 {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    color: #ead0a1;
    background: transparent;
    border: 0;
}

.gossip_box2 *,
.gossip_box2 *::before,
.gossip_box2 *::after {
    box-sizing: border-box;
}


/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.gossip_title {
    width: 100%;
    padding: 9px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #b9864d;
    background: transparent;

    font-family: Cinzel, Georgia, serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.gossip_title::before,
.gossip_title::after {
    content: "";
    height: 1px;
    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(185, 134, 77, 0.55)
    );
}

.gossip_title::after {
    background: linear-gradient(
        90deg,
        rgba(185, 134, 77, 0.55),
        transparent
    );
}

.gossip_title span {
    display: block;
    white-space: nowrap;
}


/* =========================================================
   INHALTSBEREICH
   ========================================================= */

.gossip_content {
    width: 100%;
    padding: 8px 20px 12px;
}


/* =========================================================
   GERÜCHTEKARTE
   ========================================================= */

.gossip_rumour_card {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 14px 16px;

    background: rgba(36, 20, 12, 0.72);

    border-top: 1px solid rgba(185, 134, 77, 0.25);
    border-right: 1px solid rgba(185, 134, 77, 0.15);
    border-bottom: 1px solid rgba(185, 134, 77, 0.25);
    border-left: 3px solid #a76e32;

    box-shadow: none;
}


/* =========================================================
   GERÜCHTETEXT
   ========================================================= */

.gossip_rumour_quote {
    position: relative;
    width: 100%;
    min-height: 70px;
    margin: 0;
    padding: 4px 8px 14px 38px;

    color: #e1c9a6;

    font-family: times new roman, Georgia, serif;
    font-size: 17px;
    font-weight: 100;
    line-height: 165%;
    text-align: justify;

    border-bottom: 1px solid rgba(185, 134, 77, 0.2);
}

.gossip_rumour_quote::before {
    content: "“";
    position: absolute;
    top: -8px;
    left: 0;

    color: #91612f;

    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: normal;
    line-height: 1;
}


/* =========================================================
   BETEILIGTE CHARAKTERE
   ========================================================= */

.gossip_about {
    width: 100%;
    padding: 9px 8px 0 38px;

    color: #8f7961;

    font-family: Georgia, serif;
    font-size: 9px;
    font-style: italic;
    line-height: 150%;
    text-align: left;
}

.gossip_about h14 {
    display: block;
    margin: 0;
    padding: 0;

    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    line-height: inherit;
    text-transform: none;
}

.gossip_about a:link,
.gossip_about a:visited,
.gossip_about a:active {
    color: #c99a61;

    font-family: Cinzel, Georgia, serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.gossip_about a:hover {
    color: #efd1a5;
}


/* =========================================================
   LINK ZUR GERÜCHTEÜBERSICHT
   ========================================================= */

.gossip_link {
    padding: 7px 20px 14px;

    color: #a97843;

    font-family: Cinzel, Georgia, serif;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-align: right;
    text-transform: uppercase;
}

.gossip_link h1 {
    display: block;
    margin: 0;
    padding: 0;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.gossip_link a:link,
.gossip_link a:visited,
.gossip_link a:active {
    display: inline-block;

    color: #a97843;
    font-weight: 600;
}

.gossip_link a::after {
    content: "  →";
}

.gossip_link a:hover {
    color: #e0b77e;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 650px) {

    .gossip_content {
        padding-right: 12px;
        padding-left: 12px;
    }

    .gossip_rumour_card {
        padding: 12px;
    }

    .gossip_rumour_quote {
        padding-left: 30px;

        font-size: 14px;
        line-height: 155%;
    }

    .gossip_rumour_quote::before {
        font-size: 34px;
    }

    .gossip_about {
        padding-left: 30px;
    }

}

@media screen and (max-width: 430px) {

    .gossip_title {
        padding-right: 12px;
        padding-left: 12px;

        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .gossip_rumour_quote {
        text-align: left;
    }

}